Spring Boot 应用程序无法加载测试属性

Posted

技术标签:

【中文标题】Spring Boot 应用程序无法加载测试属性【英文标题】:SpringBoot application not able to load test properties 【发布时间】:2020-09-07 14:34:07 【问题描述】:

我在加载我的 Spring Boot 应用程序测试属性时遇到了问题。我的 application.properties 文件包含在 src/test/resources/ 下,但是当我运行测试用例时它失败了,因为它无法加载应用程序语境。这是我的测试类的样子

@SpringBootTest
@EmbeddedKafka(partitions = 1, controlledShutdown = true)
@Import(KafkaTestConfiguration.class)
@EnableAutoConfiguration(exclude = IntegrationAutoConfiguration.class)
public class DeadLetterPropertiesTest 

    @Autowired
    DeadLetterProperties deadLetterProperties;

    @Value("errorqueue")
    private String deadLetterQueueName;

    @Test
    public void queueNameTest() 
 assertEquals(deadLetterQueueName,deadLetterProperties.getQueueName());


堆栈跟踪如下所示:

java.lang.NullPointerException  at 
com.test.DeadLetterPropertiesTest.queueNameTest(DeadLetterPropertiesTest.java:47)   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)  at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)   at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)   at 
java.lang.reflect.Method.invoke(Method.java:498)    at 
org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)    at 
org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)     at 
org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)  at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)  at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)  at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)  at 
    org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)    at org.junit.runner.JUnitCore.run(JUnitCore.java:137)   at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)   at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:33)    at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:230)     at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:58)

【问题讨论】:

【参考方案1】:

堆栈跟踪确认在测试期间创建应用程序上下文失败。这可能是由于多种原因,其中一个可能是无法从application.properties 读取值。我在您的代码中注意到了几个问题。在您的代码中,如果您按照文档使用 @SpringBootTest 注释,则可以删除 @ContextConfiguration 注释:

Spring Boot 提供了一个 @SpringBootTest 注解,可以用作 标准弹簧测试@ContextConfiguration 的替代方案 需要 Spring Boot 功能时的注释。注释由 通过创建测试中使用的 ApplicationContext SpringApplication。

您可以使用 注释 @TestConfiguration 代替。您还应该排除 正常的配置类,因为如果你是 为相同的 bean 提供单独的测试配置。 另外,如果您有带有测试值的application.propertiessrc/test/resources 下则无需指定 使用@TestPropertySource 作为文件的路径将是 测试时springboot自动占用。 也不要同时使用注释@SpringBootTest@RunWith(SpringRunner.class)。这些都是针对不同用例的不同注释。如果您不明白使用时使用什么Link

官方doc

为了进一步分析,请更正您的代码,然后再次运行,如果错误仍然存​​在,请分享完整的堆栈跟踪。

【讨论】:

我已经用我所做的新更改更新了帖子。现在我得到空指针异常。 @TechGeek 你在DeadLetterPropertiesTest.java:47 上得到空指针异常,这是deadLetterProperties.getQueueName() getter 方法。这意味着 getter 返回 null。能否分享一下该类的代码,以便我们进行更多分析。

以上是关于Spring Boot 应用程序无法加载测试属性的主要内容,如果未能解决你的问题,请参考以下文章

在 Citrus TestNG 测试期间 Spring Boot 未加载测试特定应用程序属性

如何在 Spring Boot 中将属性注入测试类?

休眠延迟加载不适用于 Spring Boot => 无法延迟初始化角色集合无法初始化代理 - 无会话

java.lang.IllegalStateException:无法加载 ApplicationContext Spring Boot + JUnit 测试

使用 gradle 时,在 Spring Boot 测试期间无法加载驱动程序类:“org.h2.Driver”

译:从 JSON 文件加载 Spring Boot 属性