当前位置:   article > 正文

SpringBoot2.0的@Cacheable(Redis)缓存失效时间解决方案_cacheable设置过期时间

cacheable设置过期时间

1、注释介绍 @Cacheable、@CachePut、@CacheEvict

     spring cache 主要使用3个注释标签,即 @Cacheable、@CachePut 和 @CacheEvict,我们总结一下其作用和配置方法。

表 1. @Cacheable 作用和配置方法

@Cacheable 的作用主要针对方法配置,能够根据方法的请求参数对其结果进行缓存
@Cacheable 主要的参数
value缓存的名称,在 spring 配置文件中定义,必须指定至少一个例如:
@Cacheable(value=”mycache”) 或者 
@Cacheable(value={”cache1”,”cache2”}
key缓存的 key,可以为空,如果指定要按照 SpEL 表达式编写,如果不指定,则缺省按照方法的所有参数进行组合例如:
@Cacheable(value=”testcache”,key=”#userName”)
condition缓存的条件,可以为空,使用 SpEL 编写,返回 true 或者 false,只有为 true 才进行缓存例如:
@Cacheable(value=”testcache”,condition=”#userName.length()>2”)

实例

@Cacheable(value=”accountCache”),这个注释的意思是,当调用这个方法的时候,会从一个名叫 accountCache 的缓存中查询,如果没有,则执行实际的方法(即查询数据库),并将执行的结果存入缓存中,否则返回缓存中的对象。这里的缓存中的 key 就是参数 userName,value 就是 Account 对象。“accountCache”缓存是在 spring*.xml 中定义的名称。

  1. @Cacheable(value="accountCache")// 使用了一个缓存名叫 accountCache
  2. public Account getAccountByName(String userName) {
  3. // 方法内部实现不考虑缓存逻辑,直接实现业务
  4. System.out.println("real query account."+userName);
  5. return getFromDB(userName);
  6. }

表 2. @CachePut 作用和配置方法

@CachePut 的作用主要针对方法配置,能够根据方法的请求参数对其结果进行缓存,和 @Cacheable 不同的是,它每次都会触发真实方法的调用
@CachePut 主要的参数
value缓存的名称,在 spring 配置文件中定义,必须指定至少一个例如:
@Cacheable(value=”mycache”) 或者 
@Cacheable(value={”cache1”,”cache2”}
key缓存的 key,可以为空,如果指定要按照 SpEL 表达式编写,如果不指定,则缺省按照方法的所有参数进行组合例如:
@Cacheable(value=”testcache”,key=”#userName”)
condition缓存的条件,可以为空,使用 SpEL 编写,返回 true 或者 false,只有为 true 才进行缓存例如:
@Cacheable(value=”testcache”,condition=”#userName.length()>2”)

表 3. @CacheEvict 作用和配置方法

@CachEvict 的作用主要针对方法配置,能够根据一定的条件对缓存进行清空
@CacheEvict 主要的参数
value缓存的名称,在 spring 配置文件中定义,必须指定至少一个例如:
@CachEvict(value=”mycache”) 或者 
@CachEvict(value={”cache1”,”cache2”}
key缓存的 key,可以为空,如果指定要按照 SpEL 表达式编写,如果不指定,则缺省按照方法的所有参数进行组合例如:
@CachEvict(value=”testcache”,key=”#userName”)
condition缓存的条件,可以为空,使用 SpEL 编写,返回 true 或者 false,只有为 true 才清空缓存例如:
@CachEvict(value=”testcache”,
condition=”#userName.length()>2”)
allEntries是否清空所有缓存内容,缺省为 false,如果指定为 true,则方法调用后将立即清空所有缓存例如:
@CachEvict(value=”testcache”,allEntries=true)
beforeInvocation是否在方法执行前就清空,缺省为 false,如果指定为 true,则在方法还没有执行的时候就清空缓存,缺省情况下,如果方法执行抛出异常,则不会清空缓存例如:
@CachEvict(value=”testcache”,beforeInvocation=true)/2、

实例: 

  1. @CacheEvict(value="accountCache",key="#account.getName()")// 清空accountCache 缓存
  2. public void updateAccount(Account account) {
  3. updateDB(account);
  4. }
  5. @CacheEvict(value="accountCache",allEntries=true)// 清空accountCache 缓存
  6. public void reload() {
  7. reloadAll()
  8. }
  9. // 缓存名叫 accountCache
  10. @Cacheable(value="accountCache",condition="#userName.length() <=4")
  11. public Account getAccountByName(String userName) {
  12. // 方法内部实现不考虑缓存逻辑,直接实现业务
  13. return getFromDB(userName);
  14. }
@CacheConfig

        所有的@Cacheable()里面都有一个value=“xxx”的属性,这显然如果方法多了,写起来也是挺累的,如果可以一次性声明完 那就省事了。
        所以,有了@CacheConfig这个配置,@CacheConfig is a class-level annotation that allows to share the cache names,如果你在你的方法写别的名字,那么依然以方法的名字为准。

  1. @CacheConfig("books")
  2. public class BookRepositoryImpl implements BookRepository
  3. {
  4. @Cacheable
  5. public Book findBook(ISBN isbn) {...}
  6. }

条件缓存

        下面提供一些常用的条件缓存

  1. //@Cacheable将在执行方法之前( #result还拿不到返回值)判断condition,如果返回true,则查缓存;
  2. @Cacheable(value = "user", key = "#id", condition = "#id lt 10")
  3. public User conditionFindById(final Long id)
  4. //@CachePut将在执行完方法后(#result就能拿到返回值了)判断condition,如果返回true,则放入缓存;
  5. @CachePut(value = "user", key = "#id", condition = "#result.username ne 'zhang'")
  6. public User conditionSave(final User user)
  7. //@CachePut将在执行完方法后(#result就能拿到返回值了)判断unless,如果返回false,则放入缓存;(即跟condition相反)
  8. @CachePut(value = "user", key = "#user.id", unless = "#result.username eq 'zhang'")
  9. public User conditionSave2(final User user)
  10. //@CacheEvict, beforeInvocation=false表示在方法执行之后调用(#result能拿到返回值了);且判断condition,如果返回true,则移除缓存;
  11. @CacheEvict(value = "user", key = "#user.id", beforeInvocation = false, condition = "#result.username ne 'zhang'")
  12. public User conditionDelete(final User user)

@Caching

        有时候我们可能组合多个Cache注解使用;比如用户新增成功后,我们要添加id–>user;username—>user;email—>user的缓存;此时就需要@Caching组合多个注解标签了。

  1. @Caching(put = {
  2. @CachePut(value = "user", key = "#user.id"),
  3. @CachePut(value = "user", key = "#user.username"),
  4. @CachePut(value = "user", key = "#user.email")
  5. })
  6. public User save(User user) {
  7. }
自定义缓存注解

        比如之前的那个@Caching组合,会让方法上的注解显得整个代码比较乱,此时可以使用自定义注解把这些注解组合到一个注解中,如:

  1. @Caching(put = {
  2. @CachePut(value = "user", key = "#user.id"),
  3. @CachePut(value = "user", key = "#user.username"),
  4. @CachePut(value = "user", key = "#user.email")
  5. })
  6. @Target({ElementType.METHOD, ElementType.TYPE})
  7. @Retention(RetentionPolicy.RUNTIME)
  8. @Inherited
  9. public @interface UserSaveCache {
  10. }

        这样我们在方法上使用如下代码即可,整个代码显得比较干净。@UserSaveCache public User save(User user)

2、基本原理

      和 spring 的事务管理类似,spring cache 的关键原理就是 spring AOP,通过 spring AOP,其实现了在方法调用前、调用后获取方法的入参和返回值,进而实现了缓存的逻辑。我们来看一下下面这个图:

        上图显示,当客户端“Calling code”调用一个普通类 Plain Object 的 foo() 方法的时候,是直接作用在 pojo 类自身对象上的,客户端拥有的是被调用者的直接的引用。

        而 Spring cache 利用了 Spring AOP 的动态代理技术,即当客户端尝试调用 pojo 的 foo()方法的时候,给他的不是 pojo 自身的引用,而是一个动态生成的代理类

     如上图所示,这个时候,实际客户端拥有的是一个代理的引用,那么在调用 foo() 方法的时候,会首先调用 proxy 的 foo() 方法,这个时候 proxy 可以整体控制实际的 pojo.foo() 方法的入参和返回值,比如缓存结果,比如直接略过执行实际的 foo() 方法等,都是可以轻松做到的。

3、问题:@Cacheable注解不支持配置过期时间

  @Cacheable注解不支持配置过期时间,所有需要通过配置CacheManneg来配置默认的过期时间和针对每个类或者是方法进行缓存失效时间配置。

4.1 解决

  可以采用如下的配置信息来解决的设置失效时间问题修改配置类

  1. import com.fasterxml.jackson.annotation.JsonAutoDetect;
  2. import com.fasterxml.jackson.annotation.PropertyAccessor;
  3. import com.fasterxml.jackson.databind.ObjectMapper;
  4. import org.springframework.cache.CacheManager;
  5. import org.springframework.cache.annotation.EnableCaching;
  6. import org.springframework.context.annotation.Bean;
  7. import org.springframework.context.annotation.Configuration;
  8. import org.springframework.data.redis.cache.RedisCacheConfiguration;
  9. import org.springframework.data.redis.cache.RedisCacheManager;
  10. import org.springframework.data.redis.cache.RedisCacheWriter;
  11. import org.springframework.data.redis.connection.RedisConnectionFactory;
  12. import org.springframework.data.redis.core.RedisTemplate;
  13. import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
  14. import org.springframework.data.redis.serializer.RedisSerializationContext;
  15. import java.io.Serializable;
  16. import java.time.Duration;
  17. import java.util.HashMap;
  18. import java.util.Map;
  19. /**
  20. */
  21. @Configuration
  22. @EnableCaching
  23. public class RedisConfig implements Serializable {
  24. /**
  25. * 申明缓存管理器,会创建一个切面(aspect)并触发Spring缓存注解的切点(pointcut)
  26. * 根据类或者方法所使用的注解以及缓存的状态,这个切面会从缓存中获取数据,将数据添加到缓存之中或者从缓存中移除某个值
  27. */
  28. /* @Bean
  29. public RedisCacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) {
  30. return RedisCacheManager.create(redisConnectionFactory);
  31. }
  32. @Bean
  33. public RedisTemplate redisTemplate(RedisConnectionFactory factory) {
  34. // 创建一个模板类
  35. RedisTemplate<String, Object> template = new RedisTemplate<String, Object>();
  36. // 将刚才的redis连接工厂设置到模板类中
  37. template.setConnectionFactory(factory);
  38. // 设置key的序列化器
  39. template.setKeySerializer(new StringRedisSerializer());
  40. // 设置value的序列化器
  41. //使用Jackson 2,将对象序列化为JSON
  42. Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
  43. //json转对象类,不设置默认的会将json转成hashmap
  44. ObjectMapper om = new ObjectMapper();
  45. om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
  46. om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
  47. jackson2JsonRedisSerializer.setObjectMapper(om);
  48. template.setValueSerializer(jackson2JsonRedisSerializer);
  49. return template;
  50. }*/
  51. /**
  52. * 最新版,设置redis缓存过期时间
  53. */
  54. @Bean
  55. public RedisCacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) {
  56. return new RedisCacheManager(
  57. RedisCacheWriter.nonLockingRedisCacheWriter(redisConnectionFactory),
  58. this.getRedisCacheConfigurationWithTtl( 60), // 默认策略,未配置的 key 会使用这个
  59. this.getRedisCacheConfigurationMap() // 指定 key 策略
  60. );
  61. }
  62. private Map<String, RedisCacheConfiguration> getRedisCacheConfigurationMap() {
  63. Map<String, RedisCacheConfiguration> redisCacheConfigurationMap = new HashMap<>();
  64. //SsoCache和BasicDataCache进行过期时间配置
  65. redisCacheConfigurationMap.put("messagCache", this.getRedisCacheConfigurationWithTtl(30 * 60));
  66. //自定义设置缓存时间
  67. redisCacheConfigurationMap.put("userCache", this.getRedisCacheConfigurationWithTtl(60));
  68. return redisCacheConfigurationMap;
  69. }
  70. private RedisCacheConfiguration getRedisCacheConfigurationWithTtl(Integer seconds) {
  71. Jackson2JsonRedisSerializer<Object> jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer<>(Object.class);
  72. ObjectMapper om = new ObjectMapper();
  73. om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
  74. om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
  75. jackson2JsonRedisSerializer.setObjectMapper(om);
  76. RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig();
  77. redisCacheConfiguration = redisCacheConfiguration.serializeValuesWith(
  78. RedisSerializationContext
  79. .SerializationPair
  80. .fromSerializer(jackson2JsonRedisSerializer)
  81. ).entryTtl(Duration.ofSeconds(seconds));
  82. return redisCacheConfiguration;
  83. }
  84. }

4.2 测试

  • 设置缓存名称及缓存时间(如下为60秒)
  1. redisCacheConfigurationMap.put("userCache",this.getRedisCacheConfigurationWithTtl(60));
  2. 复制代码
  • 使用 加上注解即可 @Cacheable("userCache")
  • 注:名称为配置类里面设置的名称userCache,可设置多个缓存名称及时间
  • 注意:使用@CacheEvict注解的方法必须是controller层直接调用,service里间接调用不生效。@CacheEvict的方法和@Cache的方法放到一个java文件中写,他俩在两个java文件的话,会导致@CacheEvict失效。Redirecting...

使用spring时@Cacheable在service层失效的一种情况

原因:
        我是通过配置文件来注入bean对象的,而启动时扫描配置文件是有顺序的,当service层的对象已经初始化之后,而cacheManager对象还没有初始化时,这时service对象只是普通的bean对象,而不是代理对象,因此不能AOP,即缓存失效。

解决方法:
        配置文件顺序改变一下,先让cacheManager对象初始化,这时再初始化service层对象时就会包装成代理对象,就可以在service层使用缓存了。

在spring中使用ehcache时出现了 @Cacheable不起作用的情况。

1.返回的结果bean对象必须 实现Serializable接口

        public class UserEntity implements Serializable {

        }

2.在同一个类中方法A内部调用有注解的方法B,方法B不走缓存的

        原因就是上面说的,使用@Cacheable添加缓存实际上就是使用动态代理做的,在代理的方法前后做缓存的相应处理。这样一来,单独的去调方法B是有缓存的,但是如果调方法A,A里面再去调B方法,哪怕B方法配置了缓存,也是不会生效的

 解决方法:

  • 1)、不使用注解的方式,直接取 Ehcache 的 CacheManger 对象,把需要缓存的数据放到里面,类似于使用 Map,缓存的逻辑自己控制
  • 2)、把方法A和方法B放到两个不同的类里面,例如:如果两个方法都在service接口里,把方法B放到另一个service里面,这样A方法里调B方法,就可以使用B方法的缓存

Controller测试类

  1. import com.ml.demo.dao.UserDao;
  2. import com.ml.demo.entity.User;
  3. import org.springframework.cache.annotation.CacheEvict;
  4. import org.springframework.cache.annotation.CachePut;
  5. import org.springframework.cache.annotation.Cacheable;
  6. import org.springframework.web.bind.annotation.RequestMapping;
  7. import org.springframework.web.bind.annotation.RequestParam;
  8. import org.springframework.web.bind.annotation.RestController;
  9. import javax.annotation.Resource;
  10. import java.io.Serializable;
  11. /**
  12. */
  13. @RestController
  14. public class testController implements Serializable {
  15. @Resource
  16. private UserDao userDao;
  17. /**
  18. * 查询出一条数据并且添加到缓存
  19. *
  20. * @param userId
  21. * @return
  22. */
  23. @RequestMapping("/getUser")
  24. @Cacheable("userCache")
  25. public User getUser(@RequestParam(required = true) String userId) {
  26. System.out.println("如果没有缓存,就会调用下面方法,如果有缓存,则直接输出,不会输出此段话");
  27. return userDao.getUser(Integer.parseInt(userId));
  28. }
  29. /**
  30. * 删除一个缓存
  31. *
  32. * @param userId
  33. * @return
  34. */
  35. @RequestMapping(value = "/deleteUser")
  36. @CacheEvict("userCache")
  37. public String deleteUser(@RequestParam(required = true) String userId) {
  38. return "删除成功";
  39. }
  40. /**
  41. * 添加一条保存的数据到缓存,缓存的key是当前user的id
  42. *
  43. * @param user
  44. * @return
  45. */
  46. @RequestMapping("/saveUser")
  47. @CachePut(value = "userCache", key = "#result.userId +''")
  48. public User saveUser(User user) {
  49. return user;
  50. }
  51. /**
  52. * 返回结果userPassword中含有nocache字符串就不缓存
  53. *
  54. * @param userId
  55. * @return
  56. */
  57. @RequestMapping("/getUser2")
  58. @CachePut(value = "userCache", unless = "#result.userPassword.contains('nocache')")
  59. public User getUser2(@RequestParam(required = true) String userId) {
  60. System.out.println("如果走到这里说明,说明缓存没有生效!");
  61. User user = new User(Integer.parseInt(userId), "name_nocache" + userId, "nocache");
  62. return user;
  63. }
  64. @RequestMapping("/getUser3")
  65. @Cacheable(value = "userCache", key = "#root.targetClass.getName() + #root.methodName + #userId")
  66. public User getUser3(@RequestParam(required = true) String userId) {
  67. System.out.println("如果第二次没有走到这里说明缓存被添加了");
  68. return userDao.getUser(Integer.parseInt(userId));
  69. }
  70. }

参考:

IBM Developer

https://juejin.im/post/5ca07a98f265da30933fc4c4
 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/353154
推荐阅读
相关标签
  

闽ICP备14008679号