在Spring项目中配置缓存时出现异常:
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 1 in XML document from file [D:\workspaces\eclipse_svn\NewsPortalProject\WebContent\WEB-INF\classe...
分类:
系统相关 时间:
2015-06-02 17:56:46
阅读次数:
705
解决办法:将缓存的配置文件和其他的配置文件放在不同包下
1.缓存测试用例中,实例化容器时,只读缓存相关的配置文件;
ApplicationContext aCtx = new FileSystemXmlApplicationContext("classpath:ehcache/*.xml");
2.其他用例也只读自己的配置文件;
ApplicationContext aCtx = new FileSystemXmlApplicationContext("classpath:config/*.xml");...
分类:
系统相关 时间:
2015-06-02 17:52:20
阅读次数:
166