您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Spring MVC如何實現接受表單自動封裝特性,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
Spring MVC中的Controller可以以實體類接受來自客戶端的form表單,表單的字段自動構成實體類對象
客戶端的表單
<form action="http://localhost:8080/test/user" method="POST"> <!-- 每個字段名對應實體類 --> <div> <input type="text" name="name"/> </div> <div> <input type="number" name="age"/> </div> <div> <input type="text" name="hobby"/> </div> <input type="submit" value="Submit"/> </form>
實體類
public class User { private String name; private Integer age; private String hobby; public User() { this.name = "未初始化"; this.age = 10; this.hobby = "coding"; } public User(String name) { this.name = name; this.age = 10; this.hobby = "coding"; } public User(String name, Integer age) { this.name = name; this.age = age; this.hobby = "coding"; } public User(String name, Integer age, String hobby) { this.name = name; this.age = age; this.hobby = hobby; } public Integer getAge() { return age; } public String getHobby() { return hobby; } public String getName() { return name; } public void setAge(Integer age) { this.age = age; } public void setHobby(String hobby) { this.hobby = hobby; } public void setName(String name) { this.name = name; } @Override public String toString() { return "User{" + "name='" + name + '\'' + ", age=" + age + ", hobby='" + hobby + '\'' + '}'; } }
服務端接收
@Controller @RequestMapping("/test") public class TestController { @RequestMapping(value = "/user", method = RequestMethod.POST) // 控制器會自動實例化參數 public String user(User user) { System.out.println(user); return "redirect:/test/user"; } @RequestMapping(value = "/user", method = RequestMethod.GET) public String user() { return "form"; } }
關于“Spring MVC如何實現接受表單自動封裝特性”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。