Redirect in Spring MVC

后端 未结 8 2234
遇见更好的自我
遇见更好的自我 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条回答
  •  离开以前
    2020-11-28 11:43

    Try this, it should work if you have configured your view resolver properly

     return "redirect:/index.html";
    

提交回复
热议问题