Sebastian Lore
Sebastian Lore

Reputation: 469

Running Spring WebServices alongside Spring WebFlux using Tomcat

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

Answers (1)

grekier
grekier

Reputation: 3706

You cannot run webflux on Tomcat using servlet (needed for CXF/Spring WS).

Upvotes: 1

Related Questions