How to redirect a request in spring webflux?

后端 未结 3 864
栀梦
栀梦 2021-01-19 02:20

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:

3条回答
  •  -上瘾入骨i
    2021-01-19 02:49

    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")
    

提交回复
热议问题