Redis与Ehcache切换文档 === ## 前言: JEECG默认缓存采用的是Ehcache,如何切换Redis,jeecg已经提供方案如下,主要修改两方面内容,第一个是AOP拦截器,第二个是缓存工具类,具体参考如下: ## 一、切换AOP拦截器 #### 1.注释Ehcache拦截器 打开org.jeecgframework.core.aop. EhcacheAspect类,如图中红框所示, 注释@Component、@Aspect 注解。 ![](https://img.kancloud.cn/fc/69/fc6947d06e9d597e4de43c72191f5e80_996x611.png) ### 2.启用Redis拦截器 打开org.jeecgframework.core.aop. RedisCacheAspect类,如图中所示, 放开@Component、@Aspect 注解。 ![](https://img.kancloud.cn/4b/a4/4ba4c9c50d44a98223001e8c5a61cae9_845x629.png) ## 二、切换缓存工具类 找到系统中使用org.jeecgframework.core.util. EhcacheUtil类操作缓存的地方, 替换成org.jeecgframework.core.util. RedisCacheUtil类 操作缓存(全文搜索替换)。 至此就完成了Ehcache缓存切换到Redis缓存了,如果想从Redis缓存切换回Ehcache缓存把上述操作反过来既可。