I have a spring WebFlux project and it turns out that I need to allow for a Slash in query parameters for a couple API calls. In Spring MVC you would use the HttpServletRequest to handle that use case like in this example:
@PathVariable in SpringBoot with slashes in URL
How would you do that with WebFlux? I can't find any good articles about that online.