您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“Java中SpringMVC怎么獲取請(qǐng)求數(shù)據(jù)”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Java中SpringMVC怎么獲取請(qǐng)求數(shù)據(jù)”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。
客戶端請(qǐng)求參數(shù)的格式是:name=value&name=value… … 服務(wù)器端要獲得請(qǐng)求的參數(shù),有時(shí)還需要進(jìn)行數(shù)據(jù)的封裝,SpringMVC可以接收如下類型的參數(shù):
Controller中的業(yè)務(wù)方法的參數(shù)名稱要與請(qǐng)求參數(shù)的name一致,參數(shù)值會(huì)自動(dòng)映射匹配。
//http://localhost:8080/project/quick9?username=zhangsan&age=12 @RequestMapping("/quick9") @ResponseBody public void quickMethod9(String username,int age) throws IOException { System.out.println(username); System.out.println(age); }
Controller中的業(yè)務(wù)方法的POJO參數(shù)的屬性名與請(qǐng)求參數(shù)的name一致,參數(shù)值會(huì)自動(dòng)映射匹配。
//http://localhost:8080/itheima_springmvc1/quick9?username=zhangsan&age=12 public class User { private String username; private int age; getter/setter… } @RequestMapping("/quick10") @ResponseBody public void quickMethod10(User user) throws IOException { System.out.println(user); }
Controller中的業(yè)務(wù)方法數(shù)組名稱與請(qǐng)求參數(shù)的name一致,參數(shù)值會(huì)自動(dòng)映射匹配。
//http://localhost:8080/project/quick11?strs=111&strs=222&strs=333 @RequestMapping("/quick11") @ResponseBody public void quickMethod11(String[] strs) throws IOException { System.out.println(Arrays.asList(strs)); }
獲得集合參數(shù)時(shí),要將集合參數(shù)包裝到一個(gè)POJO中才可以。
<form action="${pageContext.request.contextPath}/quick12" method="post"> <input type="text" name="userList[0].username"><br> <input type="text" name="userList[0].age"><br> <input type="text" name="userList[1].username"><br> <input type="text" name="userList[1].age"><br> <input type="submit" value="提交"><br> </form>
@RequestMapping("/quick12") @ResponseBody public void quickMethod12(Vo vo) throws IOException { System.out.println(vo.getUserList()); }
當(dāng)使用 ajax提交時(shí),可以指定 contentType為json形式,那么在方法參數(shù)位置使用@RequestBody可以 直接接收集合數(shù)據(jù)而無(wú)需使用POJO進(jìn)行包裝。
<script> //模擬數(shù)據(jù) var userList = new Array(); userList.push({username: "zhangsan",age: "20"}); userList.push({username: "lisi",age: "20"}); $.ajax({ type: "POST", url: "/itheima_springmvc1/quick13", data: JSON.stringify(userList), contentType : 'application/json;charset=utf-8' }); </script>
@RequestMapping("/quick13") @ResponseBody public void quickMethod13(@RequestBody List<User> userList) throws IOException { System.out.println(userList); }
注意: 通過(guò)谷歌開(kāi)發(fā)者工具抓包發(fā)現(xiàn),沒(méi)有加載到j(luò)query文件,原因是SpringMVC的前端控制器 DispatcherServlet的url-pattern配置的是/,代表對(duì)所有的資源都進(jìn)行過(guò)濾操作,我們可以通過(guò)以下兩種方式指定放行靜態(tài)資源: ? 在spring-mvc.xml配置文件中指定放行的資源
<mvc:resources mapping="/js/**" location="/js/"/>
? 或者使用<mvc:default-servlet-handler/>標(biāo)簽
當(dāng)post請(qǐng)求時(shí),數(shù)據(jù)會(huì)出現(xiàn)亂碼,我們可以在web.xml設(shè)置一個(gè)過(guò)濾器來(lái)進(jìn)行編碼的過(guò)濾。
<!--資源過(guò)濾器--> <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
當(dāng)請(qǐng)求的參數(shù)名稱與Controller的業(yè)務(wù)方法參數(shù)名稱不一致時(shí),就需要通過(guò)@RequestParam注解顯示的綁定。
<form action="${pageContext.request.contextPath}/quick14" method="post"> <input type="text" name="name"><br> <input type="submit" value="提交"><br> </form>
注解@RequestParam還有如下參數(shù)可以使用:
value: | 請(qǐng)求參數(shù)名稱 |
required: | 此在指定的請(qǐng)求參數(shù)是否必須包括,默認(rèn)是true,提交時(shí)如果沒(méi)有此參數(shù)則報(bào)錯(cuò) |
defaultValue: | 當(dāng)沒(méi)有指定請(qǐng)求參數(shù)時(shí),則使用指定的默認(rèn)值賦值 |
@RequestMapping("/quick14") @ResponseBody public void quickMethod14(@RequestParam(value="name",required = false,defaultValue = "defaultname") String username) throws IOException { System.out.println(username); }
Restful是一種軟件 架構(gòu)風(fēng)格、 設(shè)計(jì)風(fēng)格,而不是標(biāo)準(zhǔn),只是提供了一組設(shè)計(jì)原則和約束條件。主要用于客戶端和服務(wù) 器交互類的軟件,基于這個(gè)風(fēng)格設(shè)計(jì)的軟件可以更簡(jiǎn)潔,更有層次,更易于實(shí)現(xiàn)緩存機(jī)制等。
Restful風(fēng)格的請(qǐng)求是使用 “url+請(qǐng)求方式”表示一次請(qǐng)求目的的,HTTP 協(xié)議里面四個(gè)表示操作方式的動(dòng)詞如下:
GET : | 獲取資源 |
DELETE: | 刪除資源 |
PUT: | 更新資源 |
POST: | 新建資源 |
例如:
/user/1 GET : | 得到 id = 1 的 user |
/user/1 DELETE: | 刪除 id = 1 的 user |
/user/1 PUT: | 更新 id = 1 的 user |
user POST: | 新增 user |
上述url地址/user/1中的1就是要獲得的請(qǐng)求參數(shù),在SpringMVC中可以使用占位符進(jìn)行參數(shù)綁定。地址/user/1可以寫成 /user/{id},占位符{id}對(duì)應(yīng)的就是1的值。在業(yè)務(wù)方法中我們可以使用@PathVariable注解進(jìn)行占位符的匹配獲取工作。
//http://localhost:8080/itheima_springmvc1/quick19/zhangsan @RequestMapping("/quick19/{name}") @ResponseBody public void quickMethod19(@PathVariable(value = "name",required = true) String name){ System.out.println(name); }
雖然SpringMVC 默認(rèn)已經(jīng)提供了一些常用的類型轉(zhuǎn)換器,例如客戶端提交的字符串轉(zhuǎn)換成int型進(jìn)行參數(shù)設(shè)置。
但是不是所有的數(shù)據(jù)類型都提供了轉(zhuǎn)換器,沒(méi)有提供的就需要自定義轉(zhuǎn)換器,例如:日期類型的數(shù)據(jù)就需要自 定義轉(zhuǎn)換器。
自定義類型轉(zhuǎn)換器的開(kāi)發(fā)步驟:
① 定義轉(zhuǎn)換器類實(shí)現(xiàn)Converter接口
public class DateConverter implements Converter<String, Date> { @Override public Date convert(String source) { SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd"); Date date = null; try { date = format.parse(source); } catch (ParseException e) { e.printStackTrace(); } return date; } }
② 在spring-mvc.xml配置文件中聲明轉(zhuǎn)換器
<!--配置自定義轉(zhuǎn)換器--> <bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean"> <property name="converters"> <list> <bean class="converter.DateConverter"/> </list> </property> </bean>
③ 在<annotation-driven>中引用轉(zhuǎn)換器
<!--注解驅(qū)動(dòng)--> <mvc:annotation-driven conversion-service="conversionService"/>
@RequestHeader
使用@RequestHeader可以獲得請(qǐng)求頭信息,相當(dāng)于web階段學(xué)習(xí)的request.getHeader(name) @RequestHeader注解的屬性如下:
value | 請(qǐng)求頭的名稱 |
required | 是否必須攜帶此請(qǐng)求頭 |
@RequestMapping("/quick17") @ResponseBody public void quickMethod17(@RequestHeader(value = "User-Agent",required = false) String headerValue){ System.out.println(headerValue); }
@CookieValue
使用@CookieValue可以獲得指定Cookie的值 @CookieValue注解的屬性如下:
value | 指定cookie的名稱 |
required | 是否必須攜帶此cookie |
@RequestMapping("/quick18") @ResponseBody public void quickMethod18(@CookieValue(value = "JSESSIONID",required = false) String jsessionid){ System.out.println(jsessionid); }
文件上傳客戶端三要素:
表單項(xiàng)type=“file”
表單的提交方式是post
表單的enctype屬性是多部分表單形式,及enctype=“multipart/form-data”
<form action="${pageContext.request.contextPath}/quick20" method="post" enctype="multipart/form-data"> 名稱:<input type="text" name="name"><br> 文件:<input type="file" name="file"><br> <input type="submit" value="提交"><br> </form>
文件上傳步驟
① 在pom.xml導(dǎo)入fileupload和io坐標(biāo)
<!--文件下載--> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> </dependency>
② 配置文件上傳解析器
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <property name="defaultEncoding" value="UTF-8"/> <property name="maxUploadSize" value="500000"/> </bean>
③ 編寫文件上傳代碼
@RequestMapping("/quick8") @ResponseBody public void save8(String name, MultipartFile uploadfile) { System.out.println("save8 running..."); System.out.println(name); String filename = uploadfile.getOriginalFilename(); try { uploadfile.transferTo(new File("D:\\upload\\"+filename)); } catch (IOException e) { e.printStackTrace(); } }
讀到這里,這篇“Java中SpringMVC怎么獲取請(qǐng)求數(shù)據(jù)”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。