解决Spring Boot测试方法Failed to load ApplicationContext问题

编程知识 更新时间:2023-04-05 04:38:46

今天, 在Spring Boot测试方法中, 突然出现了以下问题:

java.lang.IllegalStateException: Failed to load ApplicationContext at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:124) at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:83)
...

解决办法如下:
在pom.xml中添加测试依赖

<!-- SpringBootText注解依赖 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <scope>test</scope>
</dependency>

<!-- Junit依赖 -->
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <scope>test</scope>
</dependency>
复制代码

测试类:

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest
public class SearchTest {

    @Autowired
    private AccountDao mapper;
    
    @Test
    public void test2() {
    	Account a = new Account();
    	a.setName("李四");
    	a.setPassword("123");
    	a.setLevel(1);
    	mapper.save(a);
    }
}
复制代码

注意启动类App.java和controller, service, dao类的层级关系!

在测试类上添加@SpringBootTest和@RunWith注解就能解决以上问题

更多推荐

解决Spring Boot测试方法Failed to load ApplicationContext问题

本文发布于:2023-04-05 04:38:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/9169b5ac085483c12f5149f84dcc43aa.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:测试   方法   Boot   Spring   load

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!

  • 44814文章数
  • 14阅读数
  • 0评论数