无法使用相对路径导入Spring bean定义文件

时间:2011-12-21 21:06:03

标签: java spring unit-testing

我是Spring的新手,并继承了一个Spring项目,该项目在ProjectName / WebContent / WEB-INF / applicationContext.xml中具有所有XML配置。我正在尝试将配置分解为不同的组件,以便在测试时更容易替换DataSources和Hibernate配置等内容。

这是我的文件结构:

ProjectName
  ->WebContent
      ->WEB-INF
          ->applicationContext.xml
          ->spring-datasource.xml
          ->spring-hibernate-properties.xml
          ->spring-persistence.xml
  ->test
      ->us.mn.k12... (Java pkgs with JUnit tests)
      ->spring-hsqldb-datasource.xml
      ->spring-test-bean-locations.xml
      ->spring-test-hibernate-properties.xml
  ->src
      ->us.mn.k12... (Java pkgs with production code)

在WEB-INF / applicationContext.xml中,我导入以下内容:

<import resource="spring-datasource.xml"/> <!-- Production datasource -->
<import resource="spring-hibernate-properties.xml"/> <!-- Production hibernate properties -->
<import resource="spring-persistence.xml"/> <!--  DAO's, hibernate .hbm.xml mapping files -->

该应用程序使用上述配置。

我的JUnit测试使用DbUnit和HSQLDB内存数据库运行。所以我的JUnit测试引用了spring-test-bean-locations.xml,它具有以下内容:

<import resource="spring-hsqldb-datasource.xml"/> <!-- HSQLDB datasource for test -->
<import resource="../WebContent/WEB-INF/spring-persistence.xml"/>  <!--  Production DAO's, hibernate .hbm.xml mapping files -->
<import resource="spring-test-hibernate-properties.xml"/> <!-- Hibernate properties for test -->

通过这种方式,我可以指定测试数据源和hibernate属性,但是重用DAO的生成映射文件等。但是,运行JUnit测试时出错。以下是例外的相关部分:

Caused by: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from relative location [../WebContent/WEB-INF/spring-persistence.xml]
Offending resource: class path resource [spring-test-bean-locations.xml]; nested exception is org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [../WebContent/WEB-INF/spring-persistence.xml]; nested exception is java.io.FileNotFoundException: class path resource [../WebContent/WEB-INF/spring-persistence.xml] cannot be opened because it does not exist

现在,如果我将spring-persistence.xml移动到/ test中,以便我不必使用相对路径,并使用<import resource="spring-persistence.xml"/>引用它,那么测试运行正常。所以我认为我的XML文件的内容没问题,但是我没有用相对路径正确导入。

我输入相对路径有什么明显的错误吗?也许更大的问题是,这看起来像是将applicationContext.xml分解为组件以使其更容易进行测试的合理策略吗?

谢谢!

2 个答案:

答案 0 :(得分:18)

问题是:WEB-INF内部的任何内容都不能在常规项目设置中用于ClassLoader(并且spring默认使用ClassLoader来访问资源)。有一些黑客可以解决这个问题(比如使用file:prefix引用上下文),但这些都很难看。

我建议的更好的做法是将上下文文件从WEB-INF中移出并转移到专用资源目录(如果你有maven设置,则为src / main / resources)。这样,它们将可用于webapp ClassLoader和本地单元测试ClassLoaders。

阅读resources chapter以进一步了解所涉及的机制。

答案 1 :(得分:12)

使用

 <import resource="file:**/WebContent/WEB-INF/spring-persistence.xml" />

它适用于春季3.2.1.RELEASE。旧版本我不确定。