Reputation: 469
Just for context: How to route requests to a different servlet with WebFlux
Shortly, Netty web server is unable to run neither Apache CXF nor Spring WS because they work on top of Servlet API. But what about Tomcat? Tomcat supports newer Servlet API version which in its turn supports reactive API (webflux).
The question is: Is it possible to run WebFlux with Tomcat server and Spring WS for SOAP ?
One servlet will be used for handling reactive operations, and the other for SOAP actions.
Upvotes: 0
Views: 690
Reputation: 3706
You cannot run webflux on Tomcat using servlet (needed for CXF/Spring WS).
Upvotes: 1