Redis
# Redis
code&&coder
这个作者很懒,什么都没留下…
展开
-
springboot整合redis @CacheEvict 清缓存(3)
springboot整合redis @CacheEvict 清缓存新增缓存清除缓存新增缓存 @Override @Cacheable(value = "userlist",key = "#root.args") public List<User> getPage(Integer offset, Integer pagesize) { return userDao.getPage(offset,offset+pagesize-1); }清除缓原创 2020-07-14 17:11:23 · 603 阅读 · 0 评论 -
springboot整合redis 注解方式 问题汇总(2)
springboot整合redis 注解方式1.redis desktop manager键值显示乱码解决方案2.@Cacheable注解无效的解决方案2.1 由于Shiro安全框架的原因2.2 application缺少注释@EnableCaching1.redis desktop manager键值显示乱码解决方案package zhw.example.zhw.loginModule.config;import org.springframework.boot.autoconfigure.con原创 2020-07-14 15:51:51 · 200 阅读 · 0 评论 -
springboot整合redis 注解方式 @Cacheable(1)
springboot整合redis工程配置pom.xmlapplication.yml实体操作类User服务类UserServiceImp控制层dataController测试测试界面redis desktop manager工程配置pom.xml <!-- Redis --> <dependency> <groupId>org.springframework.boot</groupId>原创 2020-07-13 22:55:25 · 225 阅读 · 0 评论