一. ehcache整合
1. pom文件依赖
默认情况下,Spring已经集成了cache的依赖,我亲自测试过,移除这个两个依赖,也可以整合cache。
<!-- caching -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<!-- Ehcache 坐标 -->
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
</dependency>
2. 新增Ehcache.xml文件
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">
<diskStore path="java.io.tmpdir"/>
<!--defaultCache:echcache的默认缓存策略 -->
<defaultCache
maxElementsInMemory="10000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
maxElementsOnDisk="10000000"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU">
<persistence strategy="localTempSwap"/>
</defaultCache>
<!--
name:缓存名称。
maxElementsInMemory:缓存最大个数。
eternal:对象是否永久有效,一但设置了,timeout将不起作用。
timeToIdleSeconds:设置对象在失效前的允许闲置时间(单位:秒)。仅当eternal=false对象不是永久有效时使用,可选属性,默认值是0,也就是可闲置时间无穷大。
timeToLiveSeconds:设置对象在失效前允许存活时间(单位:秒)。最大时间介于创建时间和失效时间之间。仅当eternal=false对象不是永久有效时使用,默认是0.,也就是对象存活时间无穷大。
overflowToDisk:当内存中对象数量达到maxElementsInMemory时,Ehcache将会对象写到磁盘中。
diskSpoolBufferSizeMB:这个参数设置DiskStore(磁盘缓存)的缓存区大小。默认是30MB。每个Cache都应该有自己的一个缓冲区。
maxElementsOnDisk:硬盘最大缓存个数。
diskPersistent:是否缓存虚拟机重启期数据 Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认是120秒。
memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使用)。你可以设置为FIFO(先进先出)或是LFU(较少使用)。
clearOnFlush:内存数量最大时是否清除。
-->
<cache name="myToken"
maxElementsInMemory="100"
eternal="false"
timeToIdleSeconds="5400"
timeToLiveSeconds="5400"
maxElementsOnDisk="100"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU">
<persistence strategy="localTempSwap"/>
</cache>
</ehcache>
3. 启动类加上注解
@EnableCaching
@SpringBootApplication
public class Springboot2006Application {
public static void main(String[] args) {
SpringApplication.run(Springboot2006Application.class, args);
}
}
4. 在类或者方法上加入缓存
@Cacheable(value = "myToken")
@Override
public Object findUserList(Integer pageNo, Integer pageSize) {
IPage<User> page = new Page<>(pageNo, pageSize);
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper.orderByAsc("USER_ID");
IPage<User> userIPage = baseMapper.selectPage(page, wrapper);
return userIPage;
}
二. 项目演示
访问地址:http://localhost:8095/findUserList?pageNo=1&pageSize=5
第一次查询了数据库,日志打印如下:
再继续刷新浏览器,日志没增加,说明第二次以后就走了缓存。整合成功。
三. Ehcache缓存清除
在实际的开发中,我们会对用户信息或者其他做缓存策略,但是当我们修改或者新增数据后,需要清除之前的缓存,重新查询放入缓存当中。我做了一个示例测试,在新增用户时我清除了缓存,如下:
@CacheEvict(value = "myToken", allEntries = true)
@Override
public Object addUser(String userName) {
User user = new User(null, userName);
int ret = baseMapper.insert(user);
return ret;
}
可以看到日志打印是这样的:说明了在新增用户时确实清除了之前的缓存,重新查询放入缓存,之后就直接从缓存中获取数据即可。
四. 源码下载
https://gitee.com/hejr.cn.com/SpringBoot2.0_2019/tree/master/springboot2_006