How to do post-matching filter in webflux?
问题 As we know, in jersey we have pre-matching filter and post-matching filter. I'm wondering how can I get similar behavior with WebFilter in webflux application. It seems the WebFilter is sort of like a pre-matching filter which will be executed for sure, no matter a resource in @RestController found or not. My filter like this (copied from metrics filter in spring actuator): @Component @Order(100) public class AppFilter1 implements WebFilter { @Override public Mono<Void> filter