SpringMVC - 03SpringMVC請求引數
SpringMVC - 03SpringMVC請求引數
(1)獲取請求引數
客戶端請求引數的格式是: key=value&key=value......
伺服器要獲取請求的引數,有時還需要進行資料的封裝。SpringMVC可以接收如下型別的引數:
1.基本型別引數 2.POJO型別引數 3.陣列型別引數 4.集合型別引數
(1.1)獲得基本型別引數
Controller中業務方法的引數名稱要與請求引數的name一致,引數值會自動對映匹配。
@RequestMapping("/quick11") @ResponseBody public void save11(String username, intage) throws Exception { System.out.println(username); System.out.println(age); }
請求URL地址: http://localhost:8080/user/quick11?username=zzz&age=11
(1.2)獲取POJO型別引數
Controller中業務方法的POJO引數的屬性名與請求引數的name一致,引數自動對映匹配。
public class User { private String username; private int age;// 省略 getter/setter/toString...... } //-------------------------------------- @RequestMapping("/quick12") @ResponseBody public void save12(User user) throws Exception { System.out.println(user); }
請求URL地址: http://localhost:8080/user/quick12?username=zzz&age=11
(1.3)獲取陣列型別引數
@RequestMapping("/quick13") @ResponseBodypublic void save13(String[] strs) throws Exception { System.out.println(Arrays.asList(strs)); }
請求URL地址: http://localhost:8080/user/quick13?strs=aaa&strs=bbb&strs=vvv
(1.4)獲取集合型別引數
方式一:
public class UserVO { private List<User> userList; // 省略其他程式碼 } //------------------------------------------ @RequestMapping("/quick14") @ResponseBody public void save14(UserVO userVO) { System.out.println(userVO); }
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> <form action="${pageContext.request.contextPath}/user/quick14" 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="提交"> </form> </body> </html>
點選"提交"後,頁面跳轉到http://localhost:8080/user/quick14。
Console列印UserVO{userList=[User{username='zhangsan', age=19}, User{username='kk', age=132}]}
方式二:
當使用ajax提交時,可以指定contentType為json形式,那麼在方法引數位置使用@RequestBody可以直接接收集合資料而無需使用POJO進行包裝。
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> <script src="${pageContext.request.contextPath}/js/jquery-3.5.1.js"></script> <script> var userList = new Array(); userList.push({username:"zhangsan",age:19}); userList.push({username:"lisi",age:22}); $.ajax({ type: "POST", url: "${pageContext.request.contextPath}/user/quick15", data: JSON.stringify(userList), contentType: "application/json;charset=utf-8" }); </script> </head> <body> </body> </html>
@RequestMapping("/quick15") @ResponseBody public void save15(@RequestBody List<User> userList) { System.out.println(userList); }
請求URL地址:http://localhost:8080/ajax.jsp ,報錯如下
22-Nov-2020 18:10:09.348 警告 [http-nio-8080-exec-2] org.springframework.web.servlet.DispatcherServlet.noHandlerFound No mapping found for HTTP request with URI [/js/jquery-3.5.1.js] in DispatcherServlet with name 'DispatcherServlet'
在web.xml檔案中新增資源訪問配置
<mvc:resources mapping="/js/**" location="/js/"/>
<mvc:default-servlet-handler/>
Console列印[User{username='zhangsan', age=19}, User{username='lisi', age=22}]
當有新增的資源時新增<mvc:resources mappint="/img/**" location="/img/"/>。 可以使用mvc註解統一設定。<mvc:default-servlet-handler/>
(1.5)請求資料亂碼問題
當post請求時,中文資料會出現亂碼,我們可以設定一個過濾器來進行編碼的過濾。
<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>
(1.6)引數繫結註解@RequestParam
當請求引數名稱與Controller的業務方法引數名稱不一致時,就需要通過@RequestParam註解顯示的繫結。
@RequestMapping("/quick16") @ResponseBody public void save16(@RequestParam(value = "name",required = false,defaultValue = "beax") String username) { System.out.println(username); }
請求URL地址:http://localhost:8080/user/quick16?name=zhangsan
> 註解@RequestParam引數:
value: 指定請求引數名稱
required: 指定的請求引數是否必須包括,預設為true,提交時沒有此引數則會報錯
defaultValue:當沒有指定請求引數時,則使用指定的預設值賦值。
(1.7)獲取Restful風格的引數
Restful是一種軟體架構風格、設計風格,而不是標準,只是提供了一組設計原則和約束條件。
主要用於客戶端和伺服器互動類的軟體,基於這個風格設計的軟體可以更簡潔,更有層次,更易於實現快取機制等。
Restful風格的請求是使用 "url + 請求方式",表示一次請求目的地,HTTP協議裡面四個表示操作方式的動詞如下:
- GET: 用於獲取資源 /user/1 GET: 得到id=1的user
- POST: 用於新建資源 /user POST:新增user
- PUT: 用於更新資源 /user/1 PUT: 更新id=1的user
- DELETE:用於刪除資源 /user/1 DELETE:刪除id=1的user
>獲得Restful風格的引數
上述url地址/user/1中的1就是要獲得的請求引數。在SpringMVC中可以使用佔位符進行引數繫結。
地址/user/1可以寫成/user/{id},佔位符{id}對應的就是1的值。在業務方法中使用@PathVariable註解進行佔位符的匹配獲取工作。
@RequestMapping(value = "/quick17/{username}") @ResponseBody public void save17(@PathVariable(value = "username") String username){ System.out.println("save17 -->" + username); }
請求URL地址: http://localhost:8080/user/quick17/zhangsan17 Console列印 "save17 -->zhangsan17"。
(1.8)自定義型別轉換器
SpringMVC預設已經提供了一些常用的型別轉換器,例如:將客戶端提交的字串轉換成int型進行引數設定。
但不是所有的資料型別都提供了轉換器。沒有提供的就需要自定義轉換器。例如:日期型別的資料需要自定義轉換器。
@RequestMapping("/quick18") @ResponseBody public void save18(Date date){ System.out.println("save18 -->" + date); }
請求URL地址:http://localhost:8080/user/quick18?date=2020/11/12 結果正常:save18 -->Thu Nov 12 00:00:00 CST 2020
請求URL地址: http://localhost:8080/user/quick18?date=2020-11-12 請求錯誤,需自定義型別轉換器。
22-Nov-2020 18:42:40.997 璀﹀憡 [http-nio-8080-exec-4] org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'java.util.Date';
nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [java.util.Date] for value '2020-11-12'; nested exception is java.lang.IllegalArgumentException]
>定義轉換器類實現Converter介面
public class DateConverter implements Converter<String, Date> { public Date convert(String dateStr){ SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); Date date = null; try { date = format.parse(dateStr); } catch (ParseException e) { e.printStackTrace(); } return date; } }
>在spring-mvc.xml配置檔案中宣告轉換器,引入轉換器
<bean id="conversionService2" class="org.springframework.context.support.ConversionServiceFactoryBean"> <property name="converters"> <list> <bean class="com.bearpx.spring.mvc.converter.DateConverter"></bean> </list> </property> </bean> // 在 annotation-driven 中引用轉換器 <mvc:annotation-driven conversion-service="conversionService2"/> // 不能與<mvc:annotation-driven/>共存
請求URL地址:http://localhost:8080/user/quick18?date=2020-11-12 解析正常,但是原來的date=2020/11/12不能解析了。
(1.9)獲取請求頭
> @RequestHeader
使用@RequestHeader可以獲取請求頭資訊,相當於web階段的request.getHeader(name)。
@RequestHeader註解的屬性如下:
> value: 請求頭的名稱
> required:是否必須攜帶此請求頭
@RequestMapping("/quick19") @ResponseBody public void save19(HttpServletRequest request, HttpServletResponse response, HttpSession session){ System.out.println("save19 -->" + request); System.out.println("save19 -->" + response); System.out.println("save19 -->" + session); }save19 -->org.apache.catalina.connector.RequestFacade@79669d28 save19 -->org.apache.catalina.connector.ResponseFacade@1adc21d1 save19 -->org.apache.catalina.session.StandardSessionFacade@256b2c4f
@RequestMapping("/quick20") @ResponseBody public void save20(@RequestHeader(value = "User-Agent",required = false) String user_agent){ System.out.println(user_agent); }結果: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36
> @CookieValue
使用@CookieValue可以獲得指定Cookie的值。
@CookieValue註解的屬性如下:
> value: 指定cookie的名稱
> required:是否必須攜帶此cookie
@RequestMapping("/quick21") @ResponseBody public void save21(@CookieValue(value = "JSESSIONID") String jsessionId){ System.out.println(jsessionId); }