简体   繁体   中英

ServerRequest on SpringBoot 2.0.0.RELEASE

I recently moved my app. from Spring Boot 1 to 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>

I want to import the class org.springframework.web.reactive.function.server.ServerRequest to get the Error Attributes from the interface

org.springframework.boot.web.reactive.error.ErrorAttributes;

but I got this error:

The import org.springframework.web.reactive.function.server.ServerRequest cannot be resolved

The Spring Boot Reactive Project spring-boot-web-reactive was merged into Spring Webflux with Spring 5.0

Make sure you have webflux Starter on your classpath:

<dependency>
     <groupId>org.springframework</groupId>
     <artifactId>spring-webflux</artifactId>
</dependency>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM