maven引入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
在Test类上@SpringBootTest,但是显示找不到依赖
解决办法:
**把该死的 <scope>test</scope>删掉**
maven引入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
在Test类上@SpringBootTest,但是显示找不到依赖
解决办法:
**把该死的 <scope>test</scope>删掉**