spring test config忽略了maven过滤器

时间:2014-04-10 18:44:57

标签: java spring maven spring-mvc

我在我的pom.xml中有这个:

<build>
    <finalName>${project.artifactId}</finalName>
        <filters>
          <filter>${project.basedir}/src/main/resources/filters/${env}.properties</filter>
        </filters>
        <resources>
          <resource>
            <directory>${project.basedir}/src/main/resources</directory>
            <filtering>true</filtering>
          </resource>
        </resources>
    <testResources> 
       <testResource> 
         <directory>${project.basedir}/src/test/resources</directory> 
         <filtering>true</filtering> 
       </testResource> 
    </testResources> 
</build>
    ...
<profiles>
  <profile>
    <id>dev</id>
    <properties>
      <env>dev</env>
    </properties>
    <activation>
      <activeByDefault>true</activeByDefault>
    </activation>
  </profile>
  <profile>
    <id>qa</id>
    <properties>
      <env>qa</env>
    </properties>
  </profile>
  <profile>
    <id>prod</id>
    <properties>
       <env>prod</env>
    </properties>
  </profile>
</profiles>

我在src / main / resources / filters中有这些文件:dev.properties,qa.properties和prod.properties。

但是我在src / test / resource中的spring config test-db-config.xml没有获取我在属性文件中的值:

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
    <property name="driverClassName">
        <value>${db.driver}</value>
    </property>
    <property name="url">
        <value>${db.url}</value>
    </property>
    <property name="username">
        <value>${db.usename}</value>
    </property>
    <property name="password">
        <value>${db.password}</value>
    </property>
</bean>

有人能指出我正确的方向吗?感谢

这是我得到的错误:

Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 2.185 sec <<< FAILURE!
testCustomerExists(com.xxxx.hcs.persistence.repository.CustomerRepositoryTest) Time elapsed: 1.973 sec  <<< ERROR!
java.lang.IllegalStateException: Failed to load ApplicationContext
    at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:99)
    at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
    at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
    at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
 ...

在dev.properties中我有:

db.driver=oracle.jdbc.OracleDriver
db.url=jdbc:oracle:thin:@hrsdev.xxxx.net:1548:yyyy
db.usedb.passwordrname=xxxx
db.password=yyyy

当我将这些值放在test-db-config.xml中时,测试用例运行正常。所以我知道它是由变量替换造成的。

1 个答案:

答案 0 :(得分:0)

我的直觉是在过滤操作之前解析了过滤器,因此尚未评估$ {env}变量,并且永远不会解析过滤器。

您可以直接设置全名&#34; dev.properties&#34;来测试在pom中应该导致有效的过滤。

我建议使用经典方法并直接将您的属性值放在配置文件定义中(请参阅http://www.manydesigns.com/en/portofino/portofino3/tutorials/using-maven-profiles-and-resource-filtering)。

这并不妨碍使用属性文件进行配置,只需要一个包含变量的属性文件(dbConfig.properties),然后让它由maven过滤。

[修改

似乎最先进的方法是使用propertyConfigurer bean,请参阅https://stackoverflow.com/a/11874827/2087640