SpringBoot中无法解析ServletRegistrationBean
ServletRegistrationBean cannot be resolved in SpringBoot
我在基于
的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 中删除,因为它已被弃用
我在基于
的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 中删除,因为它已被弃用