I'm upgrading spring version in our application which was on spring 4.3 earlier, while upgrading to spring 5 we want to change some part of application to use reactive features available. Both MVC and WebFlux is working side by side in application but view resolution is not working in webflux is it not supported.
@RequestMapping(value = "/react/createWithReactive")
public Mono<String> reactCreateWithReactive(Model map) {
return Mono.just("createPage");
}
As per official spring documentation view resolution is same as MVC
https://docs.spring.io/spring-framework/docs/5.0.x/spring-framework-reference/web-reactive.html#webflux-viewresolution