无法在SpringBoot中解析ServletRegistrationBean
作者:互联网
我正在一个基于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
解决方法:
解决了 !
org.springframework.boot.context.embedded.ServletRegistrationBean在1.4中不赞成使用org.springframework.boot.web.servlet.ServletRegistrationBean.由于它被弃用,前者在1.5中删除了
标签:spring-mvc,spring,maven,spring-boot-2,spring-tool-suite 来源: https://codeday.me/bug/20190611/1217623.html