SpringCache缓存自定义配置的实现
目录
- 1.key的名字和TTL时间
- 2.缓存数据保存为json格式
- 3.使用缓存前缀
- 4.缓存null,防止缓存穿透
文章图片
详情请参考spring官网添加链接描述
1.key的名字和TTL时间
文章图片
/** * 查询所有1级分类 * @Cacheable代表当前方法的结果需要缓存,若缓存中有则方法不会调用,若缓存中没有会调用方法并将结果放入缓存 * 缓存默认行为: * a.若缓存中有则方法不会被调用 * b.key默认自动生成,缓存的名字::SimpleKey [](自动生成的key值) * c.缓存的value值,默认使用jdk序列化机制,将序列化后的数据存到redis * d.默认ttl时间为-1 * @return */@Cacheable(value = https://www.it610.com/article/{"category"},key ="'TopCategorys'" )@Overridepublic ListgetTopCategorys() {System.out.println(".....getTopCategorys.........."); long startTime = System.currentTimeMillis(); List categoryEntityList = this.baseMapper.selectList(new QueryWrapper ().eq("parent_cid", 0)); System.out.println("消耗时间:" + (System.currentTimeMillis() - startTime)); return categoryEntityList; }
文章图片
/*** 查询所有1级分类* @Cacheable代表当前方法的结果需要缓存,若缓存中有则方法不会调用,若缓存中没有会调用方法并将结果放入缓存* 缓存默认行为:* a.若缓存中有则方法不会被调用* b.key默认自动生成,缓存的名字::SimpleKey [](自动生成的key值)* c.缓存的value值,默认使用jdk序列化机制,将序列化后的数据存到redis* d.默认ttl时间为-1* @return*/// @Cacheable(value = https://www.it610.com/article/{"category"},key ="'TopCategorys'" )@Cacheable(value = https://www.it610.com/article/{"category"},key ="#root.method.name" )@Overridepublic ListgetTopCategorys() {System.out.println(".....getTopCategorys.........."); long startTime = System.currentTimeMillis(); List categoryEntityList = this.baseMapper.selectList(new QueryWrapper ().eq("parent_cid", 0)); System.out.println("消耗时间:" + (System.currentTimeMillis() - startTime)); return categoryEntityList; }
文章图片
2.缓存数据保存为json格式
文章图片
文章图片
文章图片
文章图片
文章图片
* 原理:
*CacheAutoConfiguration(selectImports方法)--->CacheConfigurations(MAPPINGS)
*--->RedisCacheConfiguration-->cacheManager方法--->RedisCacheManager初始化所有的缓存(determineConfiguration方法
*每个缓存决定使用什么配置) --->createConfiguration方法
在config包下新建MyCacheConfig配置类
package com.atguigu.gulimall.product.config; import org.springframework.boot.autoconfigure.cache.CacheProperties; import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.cache.RedisCacheConfiguration; import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer; import org.springframework.data.redis.serializer.RedisSerializationContext; import org.springframework.data.redis.serializer.StringRedisSerializer; /** * 缓存配置 * @author zfh * @email hst1406959716@163.com * @date 2021-12-25 09:40:46 */@EnableCaching@Configurationpublic class MyCacheConfig {@BeanRedisCacheConfiguration redisCacheConfiguration(){RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig(); // config = config.entryTtl(); config = config.serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(new StringRedisSerializer())); config = config.serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(new GenericJackson2JsonRedisSerializer())); return config; }}
文章图片
发现ttl变成了-1,我们的application.properties没起作用
package com.atguigu.gulimall.product.config; import org.springframework.boot.autoconfigure.cache.CacheProperties; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.cache.RedisCacheConfiguration; import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer; import org.springframework.data.redis.serializer.RedisSerializationContext; import org.springframework.data.redis.serializer.StringRedisSerializer; /** * 缓存配置 * @author zfh * @email hst1406959716@163.com * @date 2021-12-25 09:40:46 */@EnableConfigurationProperties(CacheProperties.class)@EnableCaching@Configurationpublic class MyCacheConfig {@BeanRedisCacheConfiguration redisCacheConfiguration(CacheProperties cacheProperties){RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig(); // config = config.entryTtl(); config = config.serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(new StringRedisSerializer())); config = config.serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(new GenericJackson2JsonRedisSerializer())); CacheProperties.Redis redisProperties = cacheProperties.getRedis(); //将配置文件中所有的配置都生效if (redisProperties.getTimeToLive() != null) {config = config.entryTtl(redisProperties.getTimeToLive()); }if (redisProperties.getKeyPrefix() != null) {config = config.prefixKeysWith(redisProperties.getKeyPrefix()); }if (!redisProperties.isCacheNullValues()) {config = config.disableCachingNullValues(); }if (!redisProperties.isUseKeyPrefix()) {config = config.disableKeyPrefix(); }return config; }}
文章图片
3.使用缓存前缀 在application.properties文件中
spring.cache.type=redis#spring.cache.cache-names=qq#TTL 毫秒为单位spring.cache.redis.time-to-live=3600000#如果指定了前缀就用我们指定的前缀,如果没有就默认使用缓存的名字作为前缀spring.cache.redis.key-prefix=CACHE_spring.cache.redis.use-key-prefix=true
文章图片
4.缓存null,防止缓存穿透 在application.properties文件中
spring.cache.type=redis#spring.cache.cache-names=qq#TTL 毫秒为单位spring.cache.redis.time-to-live=3600000#如果指定了前缀就用我们指定的前缀,如果没有就默认使用缓存的名字作为前缀spring.cache.redis.key-prefix=CACHE_spring.cache.redis.use-key-prefix=true#是否缓存空值,防止缓存穿透spring.cache.redis.cache-null-values=true
代码中直接返回null
/*** 查询所有1级分类* @Cacheable代表当前方法的结果需要缓存,若缓存中有则方法不会调用,若缓存中没有会调用方法并将结果放入缓存* 缓存默认行为:* a.若缓存中有则方法不会被调用* b.key默认自动生成,缓存的名字::SimpleKey [](自动生成的key值)* c.缓存的value值,默认使用jdk序列化机制,将序列化后的数据存到redis* d.默认ttl时间为-1** 原理:*CacheAutoConfiguration(selectImports方法)--->CacheConfigurations(MAPPINGS)*--->RedisCacheConfiguration-->cacheManager方法--->RedisCacheManager初始化所有的缓存(determineConfiguration方法*每个缓存决定使用什么配置) --->createConfiguration方法* @return*/// @Cacheable(value = https://www.it610.com/article/{"category"},key ="'TopCategorys'" )@Cacheable(value = https://www.it610.com/article/{"category"},key ="#root.method.name" )@Overridepublic ListgetTopCategorys() {System.out.println(".....getTopCategorys.........."); long startTime = System.currentTimeMillis(); List categoryEntityList = this.baseMapper.selectList(new QueryWrapper ().eq("parent_cid", 0)); System.out.println("消耗时间:" + (System.currentTimeMillis() - startTime)); //return categoryEntityList; return null; }
文章图片
【SpringCache缓存自定义配置的实现】 到此这篇关于SpringCache缓存自定义配置的实现的文章就介绍到这了,更多相关SpringCache缓存自定义配置内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- LazyCaptcha自定义随机验证码和字体的示例详解
- SpringBoot|SpringBoot自定义分布式缓存starter 并用@Enablexx 控制缓存功能是否启用
- Redis|缓存穿透 缓存击穿 缓存雪崩 这三者是什么 如何处理
- Shell脚本一键安装Nginx服务自定义Nginx版本
- C++中vector::data()使用心得和对自定义类型指针运算符的默认重载
- linux|linux qt 自定义控件,编写Qt Designer自定义控件(一)——如何创建并使用Qt自定义控件...
- stm32|C/C++ Qt 自定义Dialog对话框组件应用
- QT|QT中自定义注释模板整理
- 记录|Qt自定义控件-----仿B站标签创建框
- Qt|Qt : 自定义委托类.子类化QStyledItemDelegate