SpringBoot程序包org.springframework.test.context不存在问题解决
Posted iaiti
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot程序包org.springframework.test.context不存在问题解决相关的知识,希望对你有一定的参考价值。
目录
SpringBoot包本地编译时有测试代码,报错为程序包org.springframework.test.context不存在,但是从从IDEA中点进类里可以看到对应的包。
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@RunWith(SpringRunner.class)
@SpringBootTest
public class TestAction
1、更新project和重新引入
maven update ,这个看了下 idea里面并没有,Eclipse才有,
Reimport All maven projects
2、本地仓库检查
进入本地仓库目录,查看仓库里面也有对应版本号的包,故删除之后重新引入。
3、查看pom的依赖
最终试了很多次之后还是没有解决问题,回归到最起点,虽然类是能点击进去看到对应的内容,但是究竟依赖有没有问题呢?
从pom文件查找依赖,发现划红线的两个包压根没引用进来。
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<version>2.3.4.RELEASE</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.2.9.RELEASE</version>
<scope>test</scope>
</dependency>
遂重新引入,编译成功。
以上是关于SpringBoot程序包org.springframework.test.context不存在问题解决的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot切换版本时项目访问不到thymeleaf页面404
java编程spring里org.springframework.web这个包是干什么的