Spring MVC 接收POST表單請求,獲取引數總結
前段時間遇到一個問題,在spring mvc 服務端接收post請求時,通過html 表單提交的時候,服務端能夠接收到引數的值。但是使用httpclient4.3構造post請求,卻無法接收到引數的值。
spring 程式碼:
@RequestMapping(value = "login.do", method = RequestMethod.POST)
@ResponseBody
public String login(String username, String password) throws Exception {
return username + ":" + password;
}
表單程式碼:
<form action="http://localhost:8080/test/login.do" id="frm" method="post">
name:<input type="text" name="username" id="username"/> </br>
psword:<input type="text" name="password" id="password"/> </br>
<input id="submit" type="submit" />
</form>
httpclient4.3傳送post程式碼:
@Test
public void testMultipartPost() throws IOException {
HttpPost httpPost = new HttpPost("http://localhost:8080/test/login.do");
try {
HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
CloseableHttpClient httpClient = httpClientBuilder.build();
RequestConfig config = RequestConfig.custom().setConnectTimeout(200000).setSocketTimeout(200000).build();
httpPost.setConfig(config);
MultipartEntityBuilder multipartEntityBuilder = MultipartEntityBuilder.create();
multipartEntityBuilder.setCharset(Charset.forName("UTF-8"));
multipartEntityBuilder.addTextBody("username", "taozi");
multipartEntityBuilder.addTextBody("password", "123");
HttpEntity httpEntity = multipartEntityBuilder.build();
httpPost.setEntity(httpEntity);
HttpResponse response = httpClient.execute(httpPost);
System.out.println(EntityUtils.toString(response.getEntity()));
} finally {
httpPost.releaseConnection();
}
}
一直在查詢原因,為什麼通過httpclient4.3構造的post請求,服務端無法接收到傳輸的引數。比較與html的差異,發現httpclient構造的請求使用的是multipart形式。而表單上傳使用的是預設形式的編碼,x-www-form-urlencoded,所以表單能夠成功。現在找到問題了,將httpclient的構造程式碼,改為x-www-form-urlencoded編碼上傳,
@Test
public void testUrlencodedPost() throws IOException {
HttpPost httpPost = new HttpPost("http://localhost:8080/test/login.do");
try {
CloseableHttpClient client = HttpClients.createDefault();
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("username", "taozi"));
params.add(new BasicNameValuePair("password", "123"));
HttpEntity httpEntity = new UrlEncodedFormEntity(params, "UTF-8");
httpPost.setEntity(httpEntity);
CloseableHttpResponse response = client.execute(httpPost);
System.out.println(EntityUtils.toString(response.getEntity()));
} finally {
httpPost.releaseConnection();
}
}
現在服務端能夠正常的接收到請求了,現在總結一下表單兩種編碼的形式
application/x-www-form-urlencoded 空格轉換為 "+" 加號,特殊符號轉換為 ASCII HEX 值
multipart/form-data 不對字元進行編碼,使用二進位制資料傳輸,一般用於上傳檔案,非文字的資料傳輸。
spring mvc如果要接收 multipart/form-data 傳輸的資料,應該在spring上下文配置
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> </bean>
這樣服務端就既可以接收multipart/form-data 傳輸的資料,也可以接收application/x-www-form-urlencoded傳輸的文字資料了。
相關文章
- 表單請求獲取路由引數路由
- 2.5萬字長文簡單總結SpringMVC請求引數接收SpringMVC
- JavaWeb基礎-Request物件接收表單請求引數JavaWeb物件
- spring mvc中獲取請求URLSpringMVC
- Spring MVC的Post請求引數中文亂碼的原因&處理SpringMVC
- request的請求引數獲取方式
- (七)Spring Boot Controller的請求引數獲取Spring BootController
- 【踩坑】spring mvc在接收請求引數時由於大小寫問題導致的接收失敗SpringMVC
- MVC接收以post形式傳輸的各種引數MVC
- 【web】Spring RestTemplate提交時設定POST請求引數WebSpringREST
- Struts2中獲取請求引數
- ajax中POST請求與引數(請求體)設定
- Laravel 檔案上傳和獲取請求引數Laravel
- springmvc請求引數獲取的幾種方法SpringMVC
- Laravel 中 $request 獲取請求資訊 用法 總結Laravel
- nodejs接收get引數和post引數NodeJS
- 關於在接收POST請求,Tomcat偶發性接收到的引數不全問題排查分析Tomcat
- RESTFUL風格的URL請求及引數接收REST
- iOS 使用form表單形式提交post請求iOSORM
- SpringBoot 攔截器獲取http請求引數Spring BootHTTP
- gin框架獲取請求引數的8大方式框架
- 後臺接收Json請求引數相容陣列和單個物件JSON陣列物件
- Retrofit 動態引數(非固定引數、非必須引數)(Get、Post請求)
- SpringBoot Get 請求接收 Date 型別引數Spring Boot型別
- beego rest ful 請求引數為JSON怎麼獲取GoRESTJSON
- Day69 Spring MVC 概念及其配置方式、Springmvc單元方法獲取請求資料SpringMVC
- golang web開發獲取get、post、cookie引數GolangWebCookie
- Http請求get與post請求方式的各種相關面試總結HTTP面試
- 為何我用spring mvc獲取不到表單提交資料?SpringMVC
- Spring Boot中的 6 種API請求引數讀取方式Spring BootAPI
- Retrofit統一新增post請求的預設引數
- C# 之HTTP請求get,post帶重試引數C#HTTP
- 微信小程式 獲取微信暱稱頭像 獲取openid 封裝請求post微信小程式封裝
- 什麼是請求引數、表單引數、url引數、header引數、Cookie引數?一文講懂HeaderCookie
- Spring MVC from 表單接收二維陣列的問題SpringMVC陣列
- 過濾器中獲取form表單或url請求資料過濾器ORM
- Asp.Net MVC路由引數獲取、替換ASP.NETMVC路由
- springMvc原始碼學習之:spirngMvc獲取請求引數的方法SpringMVC原始碼