Controller中值返回页面有四种方法。分别是使用ModelAndView,Map,Model和HTTPServletRequest。分为两大类。
第一大类是使用ModelAndView。因为他的返回值是ModelAndView。方法:
@RequestMapping("/userinfo/userInfoView.do")
public ModelAndView userInfoView() {
ModelAndView mv = new ModelAndView("userinfo/userInfoView");
UserInfo info = new UserInfo();
info.setName("laxi");
info.setMobile(110);
mv.addObject("ui", info);
return mv;
}
第二大类是使用Map,Model和HTTPServletRequest,他们的返回值为String视图名。方法:
@RequestMapping("/userinfo/userInfoView1.do")
public String userInfoView1(Map<String,Object> map) {
UserInfo info = new UserInfo();
info.setName("jim");
info.setMobile(110);
map.put("ui", info);
return "userinfo/userInfoView";
}
@RequestMapping("/userinfo/userInfoView2.do")
public String userInfoView2(Model model) {
UserInfo info = new UserInfo();
info.setName("jim");
info.setMobile(110);
model.addAttribute("ui", info);
return "userinfo/userInfoView";
}
@RequestMapping("/userinfo/userInfoView3.do")
public String userInfoView3(HttpServletRequest request) {
UserInfo info = new UserInfo();
info.setName("jim");
info.setMobile(110);
request.setAttribute("ui", info);
return "userinfo/userInfoView";
}
本文详细介绍了在Spring MVC框架中,Controller通过四种不同方法返回页面的过程,包括使用ModelAndView、Map、Model和HTTPServletRequest。文章通过具体示例,展示了如何在不同的场景下选择合适的方法来传递数据并跳转到相应的视图。
3967

被折叠的 条评论
为什么被折叠?



