@ModelAttribute
Register.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<table>
<form name="register" action="register.html" method="post">
<tr>
<td>姓名</td>
<td><input name="userName" type="text"></input></td>
</tr>
<tr>
<td>年齡</td>
<td><input name="age" type="text"></input></td>
</tr>
<tr>
<td><input type="submit" value="提交"></input></td>
</tr>
</form>
<table>
</body>
</html>
registerSuccess.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<h2>註冊成功!用戶名:${userNameGot} 年齡:${ageGot}</h2>
</body>
</html>
UserInfo.java
public class UserInfo {
private String userName;
private int age;
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
AppController.java (通過@ModelAttribute,把表單信息綁定到了userInfo對象裏面,可以直接使用)
不需要再執行配對name抓資料
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import www.asuan.www.vo.UserInfo;
@Controller
@RequestMapping("/learnMVC")
public class LearnMVCController {
//使用該索引跳轉到註冊頁面
@RequestMapping("/goRegisterPage")
public String goRegisterPage() {
return "register.html";
}
//使用該索引進行註冊操作并返回註冊成功頁面
@RequestMapping("/register")
public String register(@ModelAttribute(value = "register") UserInfo userInfo, Model model) {
//通過@ModelAttribute,我們把表單信息綁定到了userInfo對象裏面,可以直接使用
String userName = userInfo.getUserName();
int age = userInfo.getAge();
model.addAttribute("userNameGot", userName);
model.addAttribute("ageGot", age);
return "registerSuccess.html";
}
}
控制器會掃描與@ModelAttribute的value值相同的實體對象,
這裡value = "register",而提交的表單的name="register"兩者相同,
所以提交的表單信息被綁定到了@ModelAttribute後面聲明的UserInfo對象中。
表單中的各個字段和實體類對象的各個字段會按照字段名一一匹配,比如表單userName匹配UserInfo對象中的userName。在上例中表單的兩個字段被綁定到了userInfo對象的兩個字段中,我們在進行業務處理的時候可以直接使用,通過這種方法我們就得到了表單的信息。