java: 找不到符号 符号: 类 SpringBootTest
时间: 2023-03-26 07:03:38 浏览: 218
Springboot测试类没有bean注入问题解析
5星 · 资源好评率100%
这个问题可能是因为缺少 Spring Boot Test 相关的依赖导致的。你可以检查一下你的项目中是否已经添加了 Spring Boot Test 的依赖,如果没有,可以在 pom.xml 文件中添加以下依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
```
然后重新编译运行项目,看看是否能够解决这个问题。
阅读全文