how can I create a redirect rest web service in spring WebFlux? It seems that there is no redirect functionality in WebFlux yet!
I want something like this:
I managed to achieve this using the code snippet below. I passed a redirect string to the render function.
The code below redirects to login route.
ServerResponse.ok().render("redirect:/login")