相关文章
spring cache相关注解介绍 @Cacheable、@CachePut、@CacheEvict
CacheableCachePutCacheEvict annotationCacheConfig开启缓存注解 Cacheable
Cacheable是用来声明方法是可缓存的。将结果存储到缓存中以便后续使用相同参数调用时不需执行实际的方法。直接从缓存中取值。最简单的格式需要制定缓存名称。 例如:
Cacheable("…
建站知识
2025/1/19 17:13:51
Spring缓存注解@Cache,@CachePut , @CacheEvict,@CacheConfig使用
Cacheable、CachePut、CacheEvict 注释介绍 表 1. Cacheable 作用和配置方法 Cacheable 的作用 主要针对方法配置,能够根据方法的请求参数对其结果进行缓存 Cacheable 主要的参数 value 缓存的名称,在 spring 配置文件中定义,必须指定至少一个…
建站知识
2025/1/19 17:23:01
使用spring cacheManager配置Guava Cache和Redis Cache
简单两步,利用spring的cacheManager配置 Guava Cache,同时还可以配置以redis实现的cache。使用时通过配置自由切换不同的cache实现。 1、创建配置类: /*** Cache配置類,用于缓存方法返回的数据* author XuJijun**/
Configuration
…
建站知识
2024/10/9 17:22:16
spring cache 的常规使用
spring cache
spring 提供了cache的封装
需要引入: <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-cache</artifactId></dependency><dependency><groupId>org.spri…
建站知识
2025/1/19 17:17:02
Spring-Cache的配置
Configuration
EnableCaching
public class RedisConfig {/*** 自定义key序列化* param redisConnectionFactory* return*/Beanpublic RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {RedisTemplate<Object, Object&…
建站知识
2024/10/9 17:22:20
【Dashy安装使用】本地Linux 部署 Dashy 并远程访问
文章目录 简介1. 安装Dashy2. 安装cpolar3.配置公网访问地址4. 固定域名访问 转载自cpolar极点云文章:本地Linux 部署 Dashy 并远程访问 简介
Dashy 是一个开源的自托管的导航页配置服务,具有易于使用的可视化编辑器、状态检查、小工具和主题等功能。你…
建站知识
2024/10/20 5:10:37