spring|spring + ehcache 基本配置
appcontent.xml
echache.xml
spring 中配置ehcache的 cacheFactory 和 cacheManager
【spring|spring + ehcache 基本配置】
1.value="https://www.it610.com/article/xxx" xxx为ehcache.xml中配置的cache 的name 如下
2、key为这个方法返回结果放入ehcache中的key ,注意点#userID
为方法参数 'menu_user' 为key的自定义前缀,注意必须要加''负责会报错说这个key的el解析异常
在需要配置缓存的方法上增加@cacheable
@Cacheable(value="https://www.it610.com/article/baseCache" ,key="'menu_user_'+#userID")
public List GetUserMenu(String userID){
return Aarray.asList("","");
}
推荐阅读
- Activiti(一)SpringBoot2集成Activiti6
- SpringBoot调用公共模块的自定义注解失效的解决
- 解决SpringBoot引用别的模块无法注入的问题
- 2018-07-09|2018-07-09 Spring 的DBCP,c3p0
- spring|spring boot项目启动websocket
- Spring|Spring Boot 整合 Activiti6.0.0
- Spring集成|Spring集成 Mina
- springboot使用redis缓存
- Spring|Spring 框架之 AOP 原理剖析已经出炉!!!预定的童鞋可以识别下发二维码去看了
- Spring|Spring Boot之ImportSelector