SpringBoot入门六,添加ehcache缓存

2021-06-16 22:03

阅读:329

标签:添加   code   注解   oca   seconds   thread   time   org   图片   

1.pom.xml文件添加引用包

org.springframework.boot
        spring-boot-starter-cache
net.sf.ehcache
        ehcache

2.添加ehcache的配置文件ehcache.xml(这个名字最好不要动)文件到resources文件中

如果是根目录下,springboot的配置文件不用做任何操作
如果是在非根目录下springboot的配置文件中需要指定具体的文件位置,如下:


spring.cache.ehcache.config=classpath:ehcache/ehcache.xml

ehcache.xml文件内容

3.springboot的启动类中添加@EnableCaching 注解

技术分享图片

4.在需要使用的地方加上ehcache的注解即可

技术分享图片

SpringBoot入门六,添加ehcache缓存

标签:添加   code   注解   oca   seconds   thread   time   org   图片   

原文地址:http://blog.51cto.com/1197822/2287613


评论


亲,登录后才可以留言!