谢谢!spring-boot-starter-test 的颜色为灰色。下面是我的 pom.xml<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>...
spring-boot-starter-test从 2.0.6 开始使用会引入 JUnit 4 依赖项。我如何使用spring-boot-starter-test(通过 Gradle),但使用 JUnit 5,而不引入 JUnit 4 依赖项?如果有帮助,这是 Gradle 依赖项输出的一部分:+--- org.springframework.boot:spring-boot-starter-test -> 2.0.5.RELEASE| +--- org.springf...
你的项目使用了 Spring Boot 的父项目spring-boot-starter-web,但是这个父项目本身不应该作为一个依赖项。 你已经在<dependencies>部分添加了spring-boot-starter-web的依赖项,所以不需要再包含父项目。 你使用了spring-boot-starter和spring-boot-starter-test的依赖项,但是它们的版本号应该与你的 Spring Boot 版本一...