在构建项目时出现以下错误:
package org.springframework.boot.test.web.client doesn't exists
我应该添加什么依赖项?
答案 0 :(得分:0)
请向您添加以下启动器pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
如您在其pom.xml
中所见,其中包括spring-boot-test
,其中包含/org/springframework/boot/test/web/client
软件包。