怎么解析SpringMVC接受表單自動封裝特性實例,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
創新互聯專注于新樂網站建設服務及定制,我們擁有豐富的企業做網站經驗。 熱誠為您提供新樂營銷型網站建設,新樂網站制作、新樂網頁設計、新樂網站官網定制、成都微信小程序服務,打造新樂網絡公司原創品牌,更為您提供新樂網站排名全網營銷落地服務。Spring MVC中的Controller可以以實體類接受來自客戶端的form表單,表單的字段自動構成實體類對象
客戶端的表單
<form action="http://localhost:8080/test/user" method="POST"> <!-- 每個字段名對應實體類 --> <p> <input type="text" name="name"/> </p> <p> <input type="number" name="age"/> </p> <p> <input type="text" name="hobby"/> </p> <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"; }}
看完上述內容,你們掌握怎么解析SpringMVC接受表單自動封裝特性實例的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注創新互聯行業資訊頻道,感謝各位的閱讀!
分享標題:怎么解析SpringMVC接受表單自動封裝特性實例-創新互聯
本文鏈接:http://vcdvsql.cn/article18/dsdhgp.html
成都網站建設公司_創新互聯,為您提供小程序開發、ChatGPT、手機網站建設、App開發、建站公司、響應式網站
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯