【发布时间】:2017-09-20 08:57:31
【问题描述】:
我在一个基于
的 SpringBoot 项目中工作<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
我将 pom 更新为
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
拥有最后一个版本,但之后我无法再编译项目,因为我遇到了这个问题:
The import org.springframework.boot.context.embedded.ServletRegistrationBean cannot be
resolved
【问题讨论】:
标签: spring maven spring-mvc spring-boot spring-tool-suite