在Spring项目中集成Ehcache,缓存数据、缓存页面
##配置修改
###工程配置
For Maven project :
For Gradle project :
###Spring配置
在spring的主配置
中添加
xml文件的schema中添加
xmlns:cache="http://www.springframework.org/schema/cache"
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache-3.2.xsd
###缓存配置
编辑文件resources/ehcache.xml
##使用缓存
###缓存数据
###缓存指定页面
修改web.xml
配置
###缓存部分页面
##Ehcache API使用方法
CacheManager
主要的缓存管理类,一般一个应用为一个实例,CacheManager.create();也可以使用new CacheManager的方式创建默认的配置文件为ehcache.xml文件,也可以使用不同的配置:CacheManager manager = new CacheManager(“src/config/other.xml”);