@ModelAttribute注解用于将请求参数绑定到Model对象,位于spring-web的jar中,类路径为:org.springframework.web.bind.annotation.ModelAttribute.
@ModelAttribute注解只有一个属性:value,类型:String,是否必要:否,说明:绑定的属性名称(key)
常用写法如下:
@ModelAttribute("username")
@ModelAttribute(value="username")
@ModelAttribute
使用方法整理如下:
username:${requestScope.username}
pwd:${requestScope.pwd}
username:${requestScope.user.username}
pwd:${requestScope.user.pwd}
@Controller
@RequestMapping("/testModelAttr")
public class TestModelAttributeController {
/**
* Description:@ModelAttrutibe测试页面
* @date 2017年4月14日
* @return 测试页面
* @throws Exception
* Description:
*/
@RequestMapping("/loginUI")
public String loginUI() throws Exception{
return "modelAttribute/loginUI";
}
}
这种情况需要通过model.addAttribute(key, value)方法绑定数据,在login方法通过model.containsAttribute("username")测试userModel方法中是否起作用,因为@ModelAttribute注释的方法在请求的方法之前调用。之后跳转到result.jsp中,查看username、pwd是否能获取到。测试结果:控制台打印true、true,result.jsp页面中requestScope.username、requestScope.pwd有值
测试代码:
@ModelAttribute
public void userModel(Model model, @RequestParam("username") String username, @RequestParam("pwd") String pwd) {
model.addAttribute("username", username);
model.addAttribute("pwd", pwd);
}
@RequestMapping("/login")
public String login(Model model) throws Exception{
//测试是否包含username属性
System.out.println(model.containsAttribute("username"));
System.out.println(model.containsAttribute("pwd"));
return "modelAttribute/result";
}
这种情况@ModelAttribute的value值"xxx"作为model的attributeName,userModel方法的返回值作为attributeName属性的值;控制台打印true、false,result.jsp页面中requestScope.username有值
测试代码:
@ModelAttribute(value="username")
public String userModel(@RequestParam("username") String username) {
return username;
}
@RequestMapping("/login")
public String login(Model model) throws Exception{
//测试是否包含username属性
System.out.println(model.containsAttribute("username"));
System.out.println(model.containsAttribute("pwd"));
return "modelAttribute/result";
}
这种情况userModel方法的返回类型User类(取首字母小写)作为model的attributeName,返回值作为attributeName属性的值;控制台打印false、false、true,result.jsp页面中requestScope.user.username、requestScope.user.pwd有值
测试代码:
@ModelAttribute
public User userModel(@RequestParam("username") String username, @RequestParam("pwd") String pwd) {
return new User(username, pwd);
}
@RequestMapping("/login")
public String login(Model model) throws Exception{
//测试是否包含username属性
System.out.println(model.containsAttribute("username"));
System.out.println(model.containsAttribute("pwd"));
System.out.println(model.containsAttribute("user"));
return "modelAttribute/result";
}
这种情况下@ModelAttribute("xxx")的属性值作为model的attributeName,login方法返回值作为attributeName属性的值;@RequestMapping("/yyy")的yyy作为请求路径,同时也作为视图名,即跳转页面的名称;如请求路径为localhost:8080/xxx/modelAttr/login.do,那么跳转页面为localhost:8080/xxx/WEB-INF/jsp/modelAttr/login.jsp
测试代码:
@ModelAttribute(value="username")
@RequestMapping("/login")
public String login(@RequestParam("username") String username) throws Exception{
System.out.println(username);
return username;
}
(1).@ModelAttribute注释的方法会在Controller中的其他方法执行前被调用,所以在一个Controller中映射多个URL时,需要注意;
(2).一般来说,@ModelAttribute指定value属性后,value的值作为model的attributeName,对应的方法返回值作为attributeName属性的值;若未指定value属性,且有返回类型,则取返回类(首字母小写)作为attributeName,返回值作为attributeName属性的值。大概的流程如下图: