Spring MVC @RestController and redirect

后端 未结 6 1094
闹比i
闹比i 2020-11-29 22:19

I have a REST endpoint implemented with Spring MVC @RestController. Sometime, depends on input parameters in my controller I need to send http redirect on client.

I

6条回答
  •  感动是毒
    2020-11-29 22:32

    if you @RestController returns an String you can use something like this

    return "redirect:/other/controller/";
    

    and this kind of redirect is only for GET request, if you want to use other type of request use HttpServletResponse

提交回复
热议问题