I am looking for servlet Filter
equivalent in Spring WebFlux. The WebFilter
seems to only fires before the controller but not after. e.g I can add a WebFilter
to do something when a request comes in, but I couldn't find an equivalent "filter" to do something when a response is sending back.
Can you have a "filter" that fires in both ways?