public void afterPropertiesSet() throws IOException, CacheException {
logger.info("Initializing EHCache CacheManager");
this.configuration = ConfigurationFactory.parseConfiguration(this.configLocation.getInputStream());
if (this.diskStorePath != null) {
logger.info("diskStorePath=" + this.diskStorePath);
DiskStoreConfiguration dsConfig = new DiskStoreConfiguration();
dsConfig.setPath(this.diskStorePath);
logger.info("diskStorePath (translated)=" + dsConfig.getPath());
configuration.addDiskStore(dsConfig);
}
if (this.terracottaUrl != null) {
logger.info("terracottaUrl=" + this.terracottaUrl);
TerracottaClientConfiguration tcConfig = new TerracottaClientConfiguration();