构建项目时出错,包org.springframework.boot.test.web.client不存在。为什么?

时间:2019-04-03 10:11:46

标签: spring spring-boot spring-rest

在构建项目时出现以下错误:

package org.springframework.boot.test.web.client doesn't exists

我应该添加什么依赖项?

1 个答案:

答案 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软件包。