亚洲免费在线视频-亚洲啊v-久久免费精品视频-国产精品va-看片地址-成人在线视频网

您的位置:首頁技術文章
文章詳情頁

Spring如何處理表單提交

瀏覽:113日期:2023-08-08 18:36:05

今天我們來講一個最簡單的表單提交處理的例子,通過提交一個表單給朋友打一聲招呼!

看這邊文章之前,你至少應該了解基于Spring的Web開發的基礎知識,當然,你還是應該準備好開發環境:

IDE+Java環境(JDK 1.7或以上版本) Maven 3.0+(Eclipse和Idea IntelliJ內置,如果使用IDE并且不使用命令行工具可以不安裝)

準備POM文件

POM.xml

<?xml version='1.0' encoding='UTF-8'?><project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd'> <modelVersion>4.0.0</modelVersion> <groupId>com.tianmaying</groupId> <artifactId>springboot-form-submission-demo</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>springboot-form-submission-demo</name> <description>Springboot form submission demo</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.2.5.RELEASE</version> <relativePath/> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build></project>

創建Controller

我們已經知道可以通過Controller來進行URL路由,Spring WebMvc框架會將Servlet容器里收到的HTTP請求根據路徑分發給對應的@Controller類進行處理、而 @RequestMapping注解表明該方法處理那些URL對應的HTTP請求。

我們的SayHelloController的代碼如下:

package com.tianmaying.springboot.formsubmission;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 org.springframework.web.bind.annotation.RequestMethod;@Controllerpublic class SayHelloController { @RequestMapping(value='/sayhello', method=RequestMethod.GET) public String sayHelloForm(Model model) { model.addAttribute('helloMessage', new HelloMessage()); return 'sayhello'; } @RequestMapping(value='/sayhello', method=RequestMethod.POST) public String sayHello(@ModelAttribute HelloMessage helloMessage, Model model) { model.addAttribute('helloMessage', helloMessage); return 'message'; }} 針對/sayhello的GET請求,我們返回提交表單的頁面,即sayHello.html 針對/sayhello的POST請求,我們進行表單的處理,然后將打招呼的信息渲染到message.html頁面返回。

表單處理也無外乎這兩件事情:顯示表單,處理表單提交。

顯示表單

/sayhello的GET請求里,在渲染頁面之前,我們通過model.addAttribute('helloMessage', new HelloMessage());告訴頁面綁定到一個空的HelloMessage對象,這樣sayHello.html頁面初始時就會顯示一個空白的表單。

HelloMessage

package com.tianmaying.springboot.formsubmission;public class HelloMessage { private String name; private String message; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; }}

僅僅扔一個空白對象給表單還不夠,你還得告訴表單的各個輸入如何綁定到對象的各個屬性上。這個時候我們要用上Themeleaf了。

<!DOCTYPE HTML><html xmlns:th='http://www.thymeleaf.org'><head> <title>好吧啦網: Spring表單提交處理</title> <meta http-equiv='Content-Type' content='text/html; charset=UTF-8' /></head><body> <h1>表單處理演示</h1> <form action='#' th:action='@{/sayhello}' th:object='${helloMessage}' method='post'> <p>friend: <input type='text' th:field='*{name}' /></p> <p>message: <input type='text' th:field='*{message}' /></p> <p><input type='submit' value='Submit' /> <input type='reset' value='Reset' /></p> </form></body></html> th:action='@{/sayhello}'表示將表單提交的POST請求交給/sayhello這個URL來處理 th:object='${helloMessage}'表示用來搜集的表單數據的對象時helloMessage,即用戶輸入信息將存儲于這個對象中 兩個表單域分別增加了屬性th:field='*{name}'和th:field='*{message}',這就是將一個表單域綁定到特定的對象屬性

處理表單

把處理表單的Controller代碼再單獨拿出來:

@RequestMapping(value='/sayhello', method=RequestMethod.POST) public String greetingSubmit(@ModelAttribute HelloMessage helloMessage, Model model) { model.addAttribute('helloMessage', helloMessage); return 'message'; }

處理表單就非常簡單了,通過@ModelAttribute,我們可以直接通過helloMessage對象來處理用戶提交的信息了。

從最早JSP和Servlet時代過來的人,對從request中根據參數名稱逐個獲取信息,然后自己去設置對應對象屬性的場景一定會歷歷在目,那叫慘絕人寰哪。現在我們只需專注于Model的業務邏輯處理了,Spring MVC和Thymeleaf這對黃金組合幫我們搞定了表單和對象綁定這樣繁瑣的事情。

Run起來

這應該是你很熟悉的代碼了:

package com.tianmaying.springboot.formsubmission;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class App { public static void main(String[] args) { SpringApplication.run(App.class, args); }}

SpringBootApplication標注做的事情參考這里,mvn spring-boot:run或在IDE中運行main()方法就可以看到效果了!​不用裝Web服務器不用部署就能直接Run Web應用的感覺確實很酸爽!

當然,一個成熟的應用,通常還需要做表單的驗證操作,即確保用戶提交上來的數據是合法而且有效的!且待下回分解!

以上就是Spring如何處理表單提交的詳細內容,更多關于Spring處理表單提交的資料請關注好吧啦網其它相關文章!

標簽: Spring
相關文章:
主站蜘蛛池模板: 97超频国产在线公开免费视频 | 综合在线视频精品专区 | 欧美a在线 | 日本成人免费在线观看 | 欧美性色黄大片在线观看 | 在线亚洲精品中文字幕美乳 | 91精品国产免费久久久久久青草 | 国产乱码精品一区二区三区四川人 | 亚洲免费视频观看 | 九九99香蕉在线视频免费 | 91手机看片国产福利精品 | 免费观看一级特黄欧美大片 | 午夜精 | 亚洲 欧美 精品专区 极品 | 性盈盈影院影院 | a毛片免费 | 亚洲天堂手机在线 | 色樱桃影院亚洲精品影院 | www.亚色| 三级网址免费 | 欧美aaaaaaaa| 国产精品手机在线播放 | 六月成人网 | www.日本在线观看 | 国产精品免费观看视频 | 99色视频在线观看 | 亚洲国产精品a一区二区三区 | 国产偷国产偷亚洲高清午夜 | 国产片在线天堂av | 久久成人精品视频 | 丝袜美腿在线不卡视频播放 | 色老头一级毛片 | 欧美成视频无需播放器 | 久久精品国产免费看久久精品 | 免费一级α片在线观看 | 国产一区二区精品久 | 精品亚洲综合久久中文字幕 | 成人免费在线播放视频 | 欧美日韩国产在线人成dvd | 性欧美高清极品xx | 国产精品久久不卡日韩美女 |