Redirect in Spring MVC

后端 未结 8 2256
遇见更好的自我
遇见更好的自我 2020-11-28 11:00

Why can\'t I get this to work in my Controller

@RequestMapping(method = RequestMethod.POST)
public String onSubmit(
    Model model,
    @ModelAttribute(\"fo         


        
8条回答
  •  旧时难觅i
    2020-11-28 11:36

    Try this

    HttpServletResponse response;       
    response.sendRedirect(".../webpage.xhtml");
    

提交回复
热议问题