zoukankan      html  css  js  c++  java
  • [bug记录]java.lang.illegalstateexception failed to load applicationcontext

    在springboot test的时候报错,提示没有载入应用上下文。
    首先检查pom依赖是否导入正确

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
    

    如果改过配置文件,在测试类上加上这个注解

    @SpringBootTest
    @TestPropertySource("classpath:application.yml")
    class SeckillDemoApplicationTests {
    
  • 相关阅读:
    挺好的程序员面试网址
    [转]浅谈协方差矩阵
    坚持
    matlab中文论坛
    看书
    Opengl绘制点
    说服力
    心情
    vector操作
    我的毕设
  • 原文地址:https://www.cnblogs.com/wangzhihang/p/14906856.html
Copyright © 2011-2022 走看看