构建Maven Spring Boot项目引发错误

时间:2018-06-21 17:09:07

标签: java spring-mvc spring-boot spring-batch spring-boot-test

我是Spring Boot的新手。我正在尝试将项目从旧的Spring Boot迁移到最新版本。

我在项目中更改了spring boot的版本。但是,当我构建项目时,它在测试中失败并抛出计算错误,并且错误低于

package org.springframework.test.annotation does not exist

我的项目中有此依赖项

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-test</artifactId>
        <scope>test</scope>
    </dependency>

不确定我可能会缺少什么?

1 个答案:

答案 0 :(得分:0)

spring-boot-test更改为spring-boot-starter-test,如下所示:

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-test</artifactId>
        <scope>test</scope>
</dependency>

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
</dependency>

请参阅http://www.baeldung.com/spring-boot-starters,以获得有关入门者的更多信息。