/** * Copyright 2018-2020 stylefeng & fengshuonan (sn93@qq.com) * <p> * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package cn.stylefeng.guns.config; import net.sf.ehcache.CacheManager; import org.springframework.cache.annotation.EnableCaching; import org.springframework.cache.ehcache.EhCacheCacheManager; import org.springframework.cache.ehcache.EhCacheManagerFactoryBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.io.ClassPathResource; /** * ehcache配置 * * @author fengshuonan * @date 2017-05-20 23:11 */ @Configuration @EnableCaching public class EhCacheConfig { /** * EhCache的配置 */ @Bean public EhCacheCacheManager cacheManager(CacheManager cacheManager) { return new EhCacheCacheManager(cacheManager); } /** * EhCache的配置 */ @Bean public EhCacheManagerFactoryBean ehcache() { EhCacheManagerFactoryBean ehCacheManagerFactoryBean = new EhCacheManagerFactoryBean(); ehCacheManagerFactoryBean.setConfigLocation(new ClassPathResource("ehcache.xml")); return ehCacheManagerFactoryBean; } }

哪里的完整版 LV8
4月2日
半夏bx LV14
2024年10月23日
angaochong LV5
2024年10月14日
yvimib LV3
2024年9月24日
yyhrhv LV8
2024年5月30日
zolscy LV24
2024年4月29日
wanglinddad LV55
2024年3月26日
jc121140 LV3
2024年2月21日
admin_z LV22
2024年2月4日
霍丽芳 LV1
2024年1月28日

yanguobin LV7
2月28日
哪里的完整版 LV8
2月27日
ryadmin123 LV2
2月6日
微信网友_7371218154688512 LV4
2月5日
水墨红尘 LV2
2024年12月24日
ma406805131 LV19
2024年12月18日
bankroll LV5
2024年12月16日
微信网友_7283984509505536
2024年12月6日
暂无贡献等级
citybird LV4
2024年11月18日
shunlun8855 LV1
2024年10月25日