前段時間負(fù)責(zé)把公司用的到mvc 升級成 spring boot咒循,此處來記錄下實(shí)踐中的問題
1.spring boot集成?ehcache
1)添加ehcache緩存文件
2)application.properties配置緩存路徑及類型
spring.cache.ehcache.config=classpath:ehcache.xml
spring.cache.type=ehcache
3)啟動項目添加@EnableCaching注解 ,引入依賴
<!--開啟 cache 緩存-->
<dependency>
? ? <groupId>net.sf.ehcache</groupId>
? ? <artifactId>ehcache</artifactId>
</dependency>
<dependency>
? ? <groupId>org.springframework.boot</groupId>
? ? <artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<!-- ehcache 緩存 -->
4)在需要緩存的地方引用注解埃撵,標(biāo)識出cacheName=users即可