【Springboot】SpringBoot重定向
return new ModelAndView("redirect:[MappingPath]");
或
return "redirect:[MappingPath]";
比如页面是 aPage.html,则重定向为 return new ModelAndView("redirect:aPage"); 或 return "redirect:aPage";
END
return new ModelAndView("redirect:[MappingPath]");
或
return "redirect:[MappingPath]";
比如页面是 aPage.html,则重定向为 return new ModelAndView("redirect:aPage"); 或 return "redirect:aPage";
END