Error:(4, 45) java: 程序包org.springframework.boot.test.context不存在
时间: 2023-09-30 07:10:01 浏览: 178
spring-context-support-4.2.2.RELEASE.jar 的jar包
这个错误提示表明你的Java程序缺少Spring Boot Test Context包。你需要在你的项目中添加这个包的依赖。
如果你使用的是Maven,可以在你的pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
```
如果你使用的是Gradle,可以在你的build.gradle文件中添加以下依赖:
```
testImplementation 'org.springframework.boot:spring-boot-starter-test'
```
添加完依赖后,重新编译你的程序即可。
阅读全文