我刚在Spring配置中配置了一个属性占位符
<context:property-placeholder location="classpath:/config/config.properties" />
如果我使用此配置运行应用程序一切正常。但是,如果我尝试运行单元测试,则由于ApplicationContext
,测试无法加载FileNotFoundException
。如果我尝试从Eclipse运行测试以及通过maven运行测试时会发生这种情况。
我还尝试使用相同的结果直接配置PropertyPlaceholderConfigurer
。
看起来文件不在类路径位置,即使测试类用
注释也是如此 @ContextConfiguration("classpath:/config/spring-config.xml")
文件位于同一文件夹中,并找到xml配置。
我已经尝试使用不同的路径:classpath:config/config.properties
并且没有类路径前缀,所有路径都不起作用。带文件前缀的绝对路径有效,但这不是一个好的解决方案。
有没有办法让属性占位符与测试一起工作?我已经找到的一个解决方案是通过在xml中提供默认属性来覆盖位置。还有其他解决方案吗?或者我是唯一一个遇到这个问题的人?
我的测试类看起来像这样:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:/config/spring-config.xml")
@Transactional
public class JpaImageDaoTest {
@Autowired
private ImageDataDao imageDataDao;
@Test
public void testFindById() {
Image anImage = new Image();
anImage.setData(new byte[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 });
imageDao.save(anImage);
Image image = imageDao.findById(imageData.getId());
assertNotNull(image);
assertEquals(anImage, image);
}
,上下文xml如下所示:
<context:property-placeholder location="classpath:/config/config.properties" />
<bean id="imageScalingService" class="service.image.ImageScalingService">
<property name="maxWidth" value="${scaling.thumbnail.maxWidth}" />
<property name="maxHeight" value="${scaling.thumbnail.maxHeight}" />
</bean>
我终于找到了解决方案/解决方法
看起来Spring不喜欢混淆XML和Java Config,或者至少在这种情况下它不起作用。我用4.0.9测试了这个。
我没有在我的@ContextConfiguration
中使用XML文件,而是引用了包含@PropertySource
注释的Java Config类。
@Configuration
@PropertySource("test.properties")
@ImportResource("webservices.xml")
public class TestPlaceholderConfig {
}
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = {TestPlaceholderConfig.class, WebServiceConfig.class})
public class MyTest {
}
奇怪的是webservices.xml还包含WebServiceConfig类的bean定义。但是,Spring无法找到Java Config中定义的bean。因此,我必须将WebServiceConfig.class添加到测试类的ContextConfiguration。
答案 0 :(得分:2)
我认为如果它是maven项目,那么属性文件应该在src / test / resource / config文件夹中。因为在运行测试用例时,测试的类路径是 src / test / resource / config 。 尝试将配置文件放在测试用例类路径
中答案 1 :(得分:1)
config.properties位于哪个文件夹中?如果你遵循标准的maven文件夹结构,它应该在src / main / resources / config / config.properties中