我是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>
不确定我可能会缺少什么?
答案 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,以获得有关入门者的更多信息。