Spring MVC 中的 forward 和 redirect

http://zachary-guo.iteye.com/blog/1503352

详细参考: http://panyongzheng.iteye.com/blog/1942839
两种返回方式都可以是ModelAndView或者String类型
forward
String url=”list”;
return new ModelAndView(url);

redirect
String url=”redirect:/list.do”;
return new ModelAndView(url);

或者这种方式: