|
From: Juergen H. <jho...@us...> - 2006-08-29 22:38:37
|
Update of /cvsroot/springframework/spring/src/org/springframework/cache/ehcache In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv2964/src/org/springframework/cache/ehcache Modified Files: EhCacheManagerFactoryBean.java Log Message: use "CacheManager.create(InputStream)" instead of "CacheManager.create(URL)" Index: EhCacheManagerFactoryBean.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/cache/ehcache/EhCacheManagerFactoryBean.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** EhCacheManagerFactoryBean.java 2 Aug 2005 14:40:10 -0000 1.8 --- EhCacheManagerFactoryBean.java 29 Aug 2006 22:38:34 -0000 1.9 *************** *** 1,4 **** /* ! * Copyright 2002-2005 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); --- 1,4 ---- /* ! * Copyright 2002-2006 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); *************** *** 69,73 **** logger.info("Initializing EHCache CacheManager"); if (this.configLocation != null) { ! this.cacheManager = CacheManager.create(this.configLocation.getURL()); } else { --- 69,73 ---- logger.info("Initializing EHCache CacheManager"); if (this.configLocation != null) { ! this.cacheManager = CacheManager.create(this.configLocation.getInputStream()); } else { |