从WEB-INF下跳出来,
调到webApp 下的index.jsp
return “redirect:index.jsp”
有时候也很有用!
@RequestMapping(value="/quit",method=RequestMethod.GET)
public String quit() {
request.getSession().invalidate();
return "redirect:index.jsp"
}
https://www.cnblogs.com/tanzq/p/8687267.html
想了解更深层次,可以看下这个