Cache 'redisCache' does not allow 'null' values;设置值为空时不存入Redis;设置unless无效;

[2019-03-05 23:16:46.695] - 20388 严重 [http-nio-8089-exec-5] --- org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/xxx].[dispatcherServlet]: Servlet.service() for servlet [dispatcherServlet] in context with path [/xxx] threw exception [Request processing failed; nested exception is java.lang.IllegalArgumentException: Cache 'redisCache' does not allow 'null' values. Avoid storing null via '@Cacheable(unless="#result == null")' or configure RedisCache to allow 'null' via RedisCacheConfiguration.] with root cause
java.lang.IllegalArgumentException: Cache 'redisCache' does not allow 'null' values. Avoid storing null via '@Cacheable(unless="#result == null")' or configure RedisCache to allow 'null' via RedisCacheConfiguration.

问题描述:

       从错误信息可以看出,redis无法存值为空的键值对到reids中

解决办法:

       所以排查sql、类等有没有问题,还有可能是通过你的条件确实查出来的结果是为空的,这种情况reids是不允许存值为空的缓存。

      Spring的Redis注解添加unless="#result == null",这样当结果为空时则不存入Redis

@Cacheable(key="'queryPubProKind'",unless="#result == null")

后期补充:

       unless字面意思:除了,除非;

       #result对应的是方法返回的结果

       放入缓存之后意思是,除了后面条件成立的情况不存入缓存。但是有一种情况当查询结果为空时仍然存入,那就是返回结果为List集合时,Mybatis返回的是空数组,而不是null,所以依然会存入缓存,需要添加判断条件。

@Cacheable(key="'PubEmpKindService.queryPubEmpKindKind'",unless="#result == null || #result.size() == 0")
public List queryPubEmpKindForSelect(){
	LOG.WRITE_SERVER("### queryPubEmpKind start ###");
	List pubEmpKindList = pubEmpKindMapper.queryAll();
	LOG.WRITE_SERVER("### queryPubEmpKind end ###");
	return pubEmpKindList;
}

      加上“#result.size() == 0”,即当为空数组时,也不存入缓存。

你可能感兴趣的:(Java,Mybatis,Redis)