Created
June 28, 2014 21:17
-
-
Save altfatterz/96cdd92cf47235660112 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Configuration | |
@EnableCaching | |
@Profile("ehcache") | |
public class EhCacheConfiguration { | |
@Bean | |
EhCacheCacheManager ehCacheCacheManager() { | |
return new EhCacheCacheManager(ehCacheManagerFactoryBean().getObject()); | |
} | |
@Bean | |
EhCacheManagerFactoryBean ehCacheManagerFactoryBean() { | |
EhCacheManagerFactoryBean ehCacheManagerFactoryBean = new EhCacheManagerFactoryBean(); | |
ehCacheManagerFactoryBean.setConfigLocation(new ClassPathResource("ehcache.xml")); | |
return ehCacheManagerFactoryBean; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment