Affects: \
I am trying to define all cross cutting concerns i.e exception, authorisation etc. in a project/repo and inject in more than one separate and independent spring-webflux project. Can anyone suggest how to accomplish this?
Comment From: bclozel
This is a rather broad use case, Spring WebFlux provides a lot of infrastructure around that.
Check out the: * WebFilters * ExceptionHandlers * Exception handling at the controller level
For security related features, Spring Security offers many integrations designed for Spring WebFlux.
For more questions, the Spring team is using Stack Overflow as we tend to keep the issue tracker for enhancements and bugs. This is mentioned in the guidelines for contributing.
Thanks