Allowing a Slash Character In Spring WebFlux Get Requests

Viewed 58

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.

0 Answers
Related