用spring boot 配置redis缓存时报错如下:java.lang.IllegalStateException:No CacheResolver specified,and no unique bean of type CacheManager found.Mark one as primary(or give it the name 'cacheManager')or declare a specific ...
用spring boot 配置redis缓存时报错如下:java.lang.IllegalStateException:No CacheResolver specified,and no unique bean of type CacheManager found.Mark one as primary(or give it the name 'cacheManager')or declare a specific ...
情况是这么个情况:/*好友管理类*/public class FridServ{/利用spring注解缓存用户的好友列表@Cacheable(value="fridsCache",key="#uid")public List getFrids(long uid){ return DB.list("select*from frid where uid=?uid);}/这里调用...