弹簧轮廓和测试
我有一个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
当前配置文件应使用注释进行设置。由于这是一个测试用例,我将无法使用 .如果可能的话,我也想避免运行时选项。测试应按原样运行(如果可能)。@ActiveProfile
web.xml
如何正确激活配置文件?是否可以使用上下文设置配置文件.xml?我是否可以在实际调用正常上下文的测试上下文中声明该变量.xml?