List of usage examples for org.apache.shiro.cache.ehcache EhCacheManager setCacheManagerConfigFile
public void setCacheManagerConfigFile(String classpathLocation)
From source file:com.smile.core.shiro.configuration.ShiroConfiguration.java
License:Apache License
@Bean protected CacheManager cacheManager() { EhCacheManager ehCacheManager = new EhCacheManager(); ehCacheManager.setCacheManagerConfigFile("classpath:ehcache.xml"); return ehCacheManager; }
From source file:com.whatlookingfor.sample.config.ShiroConfiguration.java
License:Apache License
@Bean(name = "cacheManager") public EhCacheManager cacheManager() { EhCacheManager ehCacheManager = new EhCacheManager(); ehCacheManager.setCacheManagerConfigFile("classpath:cache/ehcache-local.xml"); return ehCacheManager; }