弹簧轮廓和测试

2022-08-31 15:02:52

我有一个Web应用程序,其中我有一个典型的问题,即它需要针对不同环境的不同配置文件。某些配置作为 JNDI 数据源放置在应用程序服务器中,但某些配置保留在属性文件中。

因此,我想使用弹簧配置文件功能。

我的问题是我没有运行测试用例。

上下文.xml:

<context:property-placeholder 
  location="classpath:META-INF/spring/config_${spring.profiles.active}.properties"/>

测试:

@RunWith(SpringJUnit4ClassRunner.class)
@TestExecutionListeners({
    TestPreperationExecutionListener.class
    })
@Transactional
@ActiveProfiles(profiles = "localtest")
@ContextConfiguration(locations = {
    "classpath:context.xml" })
public class TestContext {

  @Test
  public void testContext(){

  }
}

问题似乎是用于加载配置文件的变量未解决:

Caused by: java.io.FileNotFoundException: class path resource [META-INF/spring/config_${spring.profiles.active}.properties] cannot be opened because it does not exist
at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:157)
at org.springframework.core.io.support.PropertiesLoaderSupport.loadProperties(PropertiesLoaderSupport.java:181)
at org.springframework.core.io.support.PropertiesLoaderSupport.mergeProperties(PropertiesLoaderSupport.java:161)
at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.postProcessBeanFactory(PropertySourcesPlaceholderConfigurer.java:138)
... 31 more

当前配置文件应使用注释进行设置。由于这是一个测试用例,我将无法使用 .如果可能的话,我也想避免运行时选项。测试应按原样运行(如果可能)。@ActiveProfileweb.xml

如何正确激活配置文件?是否可以使用上下文设置配置文件.xml?我是否可以在实际调用正常上下文的测试上下文中声明该变量.xml?


答案 1

我可以建议这样做吗,像这样定义你的测试:

@RunWith(SpringJUnit4ClassRunner.class)
@TestExecutionListeners({
    TestPreperationExecutionListener.class
    })
@Transactional
@ActiveProfiles(profiles = "localtest")
@ContextConfiguration
public class TestContext {

  @Test
  public void testContext(){

  }

  @Configuration
  @PropertySource("classpath:/myprops.properties")
  @ImportResource({"classpath:context.xml" })
  public static class MyContextConfiguration{

  }
}

在 myprops.properties 文件中包含以下内容:

spring.profiles.active=localtest

这样,您的第二个属性文件应该得到解决:

META-INF/spring/config_${spring.profiles.active}.properties

答案 2

看着Biju的答案,我找到了一个可行的解决方案。

我创建了一个额外的上下文文件:test-context.xml

<context:property-placeholder location="classpath:config/spring-test.properties"/>

包含配置文件:

spring.profiles.active=localtest

并加载测试:

@RunWith(SpringJUnit4ClassRunner.class)
@TestExecutionListeners({
    TestPreperationExecutionListener.class
    })
@Transactional
@ActiveProfiles(profiles = "localtest")
@ContextConfiguration(locations = {
    "classpath:config/test-context.xml" })
public class TestContext {

  @Test
  public void testContext(){

  }
}

这在创建多个测试用例时节省了一些工作。


推荐