Spring Boot測試方法Failed to load ApplicationContext


今天, 在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注解就能解決以上問題


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM