本文,讲解 Spring Boot 如何集成 EhCache,实现缓存。
在阅读「 Spring Boot 揭秘与实战(二) 数据缓存篇 - 快速入门 」后,对 Spring Boot 集成缓存机制有一定了解后,我们来了解下 EhCache 的使用。
EhCache 是一个纯 Java 的进程内缓存框架,具有快速、精干等特点,是 Hibernate 中默认的 CacheProvider。
在 Spring Boot 中集成 EhCache 非常容易,只需要两个步骤。
首先,在 pom.xml 中增加EhCache 依赖。
<dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> </dependency>
第二步,在 src/main/resources 目录下创建 ehcache.xml。
<?xml version="1.0" encoding="UTF-8"?> <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd"> <cache name="ehcache" maxElementsInMemory="1000" timeToLiveSeconds="300"> </cache> </ehcache>
其中,maxElementsInMemory,表示缓存最大数目。 timeToLiveSeconds: ,表示设置对象在失效前允许存活时间(单位:秒)。
如果想对 ehcache.xml 更深入的了解,可以参考 http://www.ehcache.org/ehcache.xml。
运行起来,控制台打印的日志信息,说明已经是EhCacheManager实例,说明 EhCache 开启成功了。
Bean 'cacheManager' of type [class org.springframework.cache.ehcache.EhCacheCacheManager]