无法在SpringBoot中解析ServletRegistrationBean

时间:2017-04-23 18:54:15

标签: spring maven spring-mvc spring-boot spring-tool-suite

我正在使用基于

的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

1 个答案:

答案 0 :(得分:7)

解决了!

org.springframework.boot.context.embedded.ServletRegistrationBean已弃用1.4赞成或org.springframework.boot.web.servlet.ServletRegistrationBean。由于它被弃用,前者在1.5中删除了