博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring boot -整合Ehcahe
阅读量:6572 次
发布时间:2019-06-24

本文共 995 字,大约阅读时间需要 3 分钟。

org.springframework.boot
spring-boot-starter-cache
net.sf.ehcache
ehcache
@Mapperpublic interface UserMapper {    void insertUser(User user);    void updateUser(User user);    void deleteUser(User user);    @Cacheable(value="user")    User queryUser(Integer id);
@SpringBootApplication@MapperScan("com.example.zs.mapper")@EnableCachingpublic class Application {    public static void main(String[] args) {        SpringApplication.run(Application.class, args);    }}
resources下的ehcache.xml: 
application.properties: spring.cache.ehcache.config=classpath:ehcache.xml

 

public class User  implements Serializable {

@Cacheable的使用 

@CacheEvict:清除缓存

 

转载于:https://www.cnblogs.com/hongchengshise/p/10539646.html

你可能感兴趣的文章
约瑟夫环
查看>>
S5:桥接模式 Bridge
查看>>
线程池-Executors
查看>>
WPF and Silverlight 学习笔记(十二):WPF Panel内容模型、Decorator内容模型及其他...
查看>>
Codeforces 414B
查看>>
LeetCode --- Pascal's Triangle II
查看>>
java对象引用,对象赋值
查看>>
mate标签
查看>>
FLUSH TABLES WITH READ LOCK 和 LOCK TABLES比较
查看>>
MYSQL 事务测试
查看>>
mysql插入中文报错的问题
查看>>
Web Socket 长连接
查看>>
windows网络函数
查看>>
MySQL:创建、修改和删除表
查看>>
安装配置管理 之 linux下通过ndiswrapper及linux-wlan-ng安装无线网卡
查看>>
Java多线程程序设计详细解析
查看>>
IOS 7 Study - UISegmentedControl
查看>>
八、通用类型系统
查看>>
3. 线程和进程
查看>>
css中的单冒号和双冒号
查看>>