我最近搬了我的应用程序。从Spring Boot 1到Spring Boot 2(2.0.0.RELEASE)。
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
我想导入类org.springframework.web.reactive.function.server.ServerRequest
以从界面获取错误属性
org.springframework.boot.web.reactive.error.ErrorAttributes;
但是我收到了这个错误:
The import org.springframework.web.reactive.function.server.ServerRequest cannot be resolved
Spring Boot Reactive Project spring-boot-web-reactive
与Spring 5.0合并为Spring Webflux
确保你的类路径上有webflux
Starter:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webflux</artifactId>
</dependency>