1.请求处理方法:
请求处理方法中有多种参数类型。
重要的类型是org.springframework.ui.Model类型,
该类型是一个包含Map的Spring框架类型。每次调用请求处理方法时创建该对象。
public String register(Model model){
model.addAttribute("success","注册成功了");
return "register";
}
2.当处理器处理完请求时,会将包含视图信息和数据信息的ModelAndView对象返回。
实例1:
public ModelAndView hello(){
ModelAndView mv = new ModelAndView();
mv.addObject("name","ay");
mv.setViewName("hello");
return mv;
}
实例2:实例1等价于实例2
public String hello(Model model){
model.addAttribute("name","ay");
return "hello";
}