@EnableCaching
@SpringBootApplication
public class TestApplication {
public static void main(String[] args) {
SpringApplication.run(TestApplication.class, args);
}
}
@Service
public class CityService {
@Cacheable(value = "city")
public Map<String, Object> insert(String key) {
Map<String, Object> map = new HashMap<>();
map.put("name", "shanghai");
return map;
}
@CachePut(value = "city")
public Map<String, Object> update(String key) {
Map<String, Object> map = new HashMap<>();
map.put("name", "beijing");
return map;
}
@CacheEvict(value = "city")
public Map<String, Object> delete(String key) {
return new HashMap<>();
}
}
application.properties配置文件
spring.cache.type=ehcache
spring.cache.ehcache.config=classpath:ehcache.xml
ehcache.xml配置文件
name:cache的名字,必须惟一。
eternal:是否持久化,若为true,则表示缓存元素不会过期。
maxElementsInMemory:cache中最多可以存放的元素的数量。
overflowToDisk:溢出是否写入磁盘。
diskPersistent:是否持久化磁盘缓存。
timeToIdleSeconds:访问cache中元素的最大间隔时间。如果超过这个时间没有访问cache中的某个元素,那么元素将被从cache中清除。
timeToLiveSeconds:cache中元素的生存时间。cache中的某个元素从创建到消亡的时间,如果超过这个时间,那么元素将被从cache中清除。
memoryStoreEvictionPolicy:元素逐出缓存规则。LRU是淘汰最长时间没有被使用的数据、FIFO先进先出、LFU是淘汰一段时间内使用次数最少的数据。
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
updateCheck="false">
<defaultCache
eternal="false"
maxElementsInMemory="1000"
overflowToDisk="false"
diskPersistent="false"
timeToIdleSeconds="0"
timeToLiveSeconds="300"
memoryStoreEvictionPolicy="LRU" />
<cache
name="person"
eternal="false"
maxElementsInMemory="1000"
overflowToDisk="false"
diskPersistent="false"
timeToIdleSeconds="300"
timeToLiveSeconds="0"
memoryStoreEvictionPolicy="LRU" />
<cache
name="city"
eternal="false"
maxElementsInMemory="1000"
overflowToDisk="false"
diskPersistent="false"
timeToIdleSeconds="0"
timeToLiveSeconds="36000"
memoryStoreEvictionPolicy="LRU" />
</ehcache>
测试和测试结果
// key默认使用方法参数的值
cityService.insert("abc");
log.info("{}", CacheManager.create().getCache("city").get("abc"));
cityService.update("abc");
log.info("{}", CacheManager.create().getCache("city").get("abc"));
cityService.delete("abc");
log.info("{}", CacheManager.create().getCache("city").get("abc"));
Cache cache = CacheManager.create().getCache("person");
cache.put(new Element("name", "jerry"));
cache.put(new Element("age", 18));
log.info("{}", cache.get("name"));
log.info("{}", cache.get("age"));
2024-01-15 10:08:13 [restartedMain] INFO cn.hwd.TestRunner - [ key = abc, value={name=shanghai}, version=1, hitCount=1, CreationTime = 1705284493613, LastAccessTime = 1705284493618 ]
2024-01-15 10:08:13 [restartedMain] INFO cn.hwd.TestRunner - [ key = abc, value={name=beijing}, version=1, hitCount=1, CreationTime = 1705284493619, LastAccessTime = 1705284493619 ]
2024-01-15 10:08:13 [restartedMain] INFO cn.hwd.TestRunner - null
2024-01-15 10:08:13 [restartedMain] INFO cn.hwd.TestRunner - [ key = name, value=jerry, version=1, hitCount=1, CreationTime = 1705284493684, LastAccessTime = 1705284493684 ]
2024-01-15 10:08:13 [restartedMain] INFO cn.hwd.TestRunner - [ key = age, value=18, version=1, hitCount=1, CreationTime = 1705284493684, LastAccessTime = 1705284493684 ]