Does WireDoctor work with WebFlux / reactive apps? #32
Answered
by
ddsha441981
ddsha441981
asked this question in
Q&A
|
Our services are reactive (Netty, RouterFunction based). Most Spring tooling assumes servlet MVC. Is WireDoctor tested against WebFlux? |
Answered by
ddsha441981
Jul 29, 2026
Replies: 1 comment
|
Yes — WebFlux is verified since v0.8.0, not just "should work":
Everything else is transport-agnostic anyway: the dependency graph comes from So: add the dependency, boot your Netty app, and |
0 replies
Answer selected by
ddsha441981
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes — WebFlux is verified since v0.8.0, not just "should work":
RouterFunction,WebHandler,WebSocketHandler,WebExceptionHandlerbeans are treated as entry points and never flagged as ghost candidates — so functional-routing apps don't get their handlers wrongly listed.Everything else is transport-agnostic anyway: the dependency graph comes from
getDependenciesForBean(), timings fromBufferingApplicationStartup, and conditions from Boot's condition report — none of that cares w…