Skip to content
Advertisement

How to add @RestController to spring-webflux apps?

The annotation @RestController cannot be resolved when only adding spring-boot-starter-webflux as maven dependency:

JavaScript

pom.xml:

JavaScript

What is missing here? According to many resources out there (eg https://medium.com/javarevisited/basic-introduction-to-spring-webflux-eb155f501b17), the webflux dependency should be sufficient for a webflux-webservice in spring-boot.

Advertisement

Answer

RestController annotation is part of org.springframework:spring-web: dependency

enter image description here

org.springframework:spring-web dependency is part of org.springframework.boot:spring-boot-starter-webflux jar so it should get resolved. You can check the complete dependency hierarchy by running mvn dependency:tree command from the terminal.

JavaScript

If you are starting a new project you can use the spring initializer – https://start.spring.io/

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement