项目场景:
使用@SpringBootTest进行单元测试。
问题描述
启动直接报错:
java.lang.NoClassDefFoundError: org/springframework/test/context/TestContextAnnotationUtils
Caused by: java.lang.ClassNotFoundException: org.springframework.test.context.TestContextAnnotationUtils
原因分析:
这是由于 spring-boot-test 和 spring-test 的版本没有匹配上
解决方案:
对于maven项目:
1、直接不写版本号,让他自动导入
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency>
2、自己去找匹配的版本号
直接修改依赖的版本号:我这里给一组能够匹配上的
spring-boot-test:2.5.12
spring-test:5.3.19
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.3.19</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<version>2.5.12</version>
<scope>test</scope>
</dependency>
修改后重新加载就行了
解决这个问题的过程:
这里报错没找到对应的类:TestContextAnnotationUtils
Caused by: java.lang.ClassNotFoundException: org.springframework.test.context.TestContextAnnotationUtils
那就肯定有地方用了这个类,直接全局搜索
发现只有他一个类是红的,但是同一个包里的其他类不是红的,那证明是有这个依赖的
对于这种只有一个红的,多半就是版本对不上,然后去搜对应的版本就可以了
其他问题:
java.lang.IllegalStateException: Could not load TestContextBootstrapper [null]. Specify @BootstrapWith’s ‘value’ attribute or make the default bootstrapper class available.
原因:spring-web和spring-test版本对不上
解决方案:不写spring-test的版本号
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>