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("",""); }

    推荐阅读