私は以下のようにSpring-bootのJunitテストを受けたいです:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = {ApplicationTest.class})
public class TestOnSpring {
@Value("${app.name}")
private String appName;
@Test
public void testValue(){
System.out.println(appName);
}
}
このようなApplicationTest.Java
@ComponentScan("org.nerve.jiepu")
@EnableAutoConfiguration()
public class ApplicationTest {
public static void main(String[] args) {
SpringApplication.run(ApplicationTest.class, args);
}
}
そして私のPOMは次のようになります:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
</parent>
テストを実行すると、以下のエラー情報が表示されました
Caused by: Java.lang.IllegalArgumentException: Could not resolve placeholder 'app.name' in string value "${app.name}"
at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.Java:174)
at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.Java:126)
at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.Java:204)
at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.Java:178)
at org.springframework.context.support.PropertySourcesPlaceholderConfigurer$2.resolveStringValue(PropertySourcesPlaceholderConfigurer.Java:172)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveEmbeddedValue(AbstractBeanFactory.Java:807)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.Java:1027)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.Java:1014)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.Java:543)
... 31 more
ただし、このアプリケーションを通常どおり実行すると、Java Application
@SpringBootApplication
public class Application {
public static void main(String[] args){
SpringApplication.run(Application.class, args);
}
}
うまくいく!
どうしたんだ ? Spring-bootでjunitテストを取得するにはどうすればよいですか?どうもありがとう!
追加する必要があります
@PropertySource( "classpath:application.properties")
クラスに追加するため、通常の構成が選択されます。
テスト用に異なる構成が必要な場合は、追加できます
@TestPropertySource(locations = "classpath:test.properties")
単に設定ファイルをコピーしない場合は、test/resources
folder、ブートはそこから選択します。
this を参照してください。
PropertySourcesPlaceholderConfigurer
を自動的に作成する@SpringBootTest
を使用できます。
これは、Spring Bootのドキュメントの「テスト」の章で説明されています。