您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關SpringMVC常用注解功能及屬性是怎樣的,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
從注解名稱上我們可以看到,@RequestMapping注解的作用就是將請求和處理請求的控制器方法關聯起來,建立映射關系。
SpringMVC 接收到指定的請求,就會來找到在映射關系中對應的控制器方法來處理這個請求。
@RequestMapping標識一個類:設置映射請求的請求路徑的初始信息
@RequestMapping標識一個方法:設置映射請求請求路徑的具體信息
@Controller @RequestMapping("/test") public class RequestMappingController { //此時請求映射所映射的請求的請求路徑為:/test/testRequestMapping @RequestMapping("/testRequestMapping") public String testRequestMapping(){ return "success"; } }
@RequestMapping注解的value屬性通過請求的請求地址匹配請求映射
@RequestMapping注解的value屬性是一個字符串類型的數組,表示該請求映射能夠匹配多個請求地址所對應的請求
@RequestMapping注解的value屬性必須設置,至少通過請求地址匹配請求映射
<a th:href="@{/testRequestMapping}" rel="external nofollow" >測試@RequestMapping的value屬性-->/testRequestMapping</a><br> <a th:href="@{/test}" rel="external nofollow" rel="external nofollow" >測試@RequestMapping的value屬性-->/test</a><br>
@RequestMapping( value = {"/testRequestMapping", "/test"} ) public String testRequestMapping(){ return "success"; }
@RequestMapping注解的method屬性通過請求的請求方式(get或post)匹配請求映射
@RequestMapping注解的method屬性是一個RequestMethod類型的數組,表示該請求映射能夠匹配多種請求方式的請求
若當前請求的請求地址滿足請求映射的value屬性,但是請求方式不滿足method屬性,則瀏覽器報錯
405:Request method 'POST' not supported
<a th:href="@{/test}" rel="external nofollow" rel="external nofollow" >測試@RequestMapping的value屬性-->/test</a><br> <form th:action="@{/test}" method="post"> <input type="submit"> </form>
@RequestMapping( value = {"/testRequestMapping", "/test"}, method = {RequestMethod.GET, RequestMethod.POST} ) public String testRequestMapping(){ return "success"; }
注意:
(1)對于處理指定請求方式的控制器方法,SpringMVC
中提供了@RequestMapping
的派生注解:
處理get
請求的映射–>@GetMapping
處理post
請求的映射–>@PostMapping
處理put
請求的映射–>@PutMapping
處理delete
請求的映射–>@DeleteMapping
(2)常用的請求方式有get
,post
,put
,delete
但是目前瀏覽器只支持get和post,若在form表單提交時,為method設置了其他請求方式的字符串(put或delete),則按照默認的請求方式get處理。
若要發送put和delete請求,則需要通過spring提供的過濾器HiddenHttpMethodFilter
。
@RequestMapping注解的params屬性通過請求的請求參數匹配請求映射
@RequestMapping注解的params屬性是一個字符串類型的數組,可以通過四種表達式設置請求參數和請求映射的匹配關系
"param"
:要求請求映射所匹配的請求必須攜帶param請求參數
"!param"
:要求請求映射所匹配的請求必須不能攜帶param請求參數
"param=value"
:要求請求映射所匹配的請求必須攜帶param請求參數且param=value
"param!=value"
:要求請求映射所匹配的請求必須攜帶param請求參數但是param!=value
<a th:href="@{/test(username='admin',password=123456)" rel="external nofollow" >測試@RequestMapping的params屬性-->/test</a><br>
@RequestMapping( value = {"/testRequestMapping", "/test"} ,method = {RequestMethod.GET, RequestMethod.POST} ,params = {"username","password!=123456"} ) public String testRequestMapping(){ return "success"; }
注意:
若當前請求滿足@RequestMapping注解的value和method屬性,但是不滿足params屬性,此時頁面會報錯
400:Parameter conditions "username, password!=123456" not met for actual request parameters: username={admin}, password={123456}
@RequestMapping注解的headers屬性通過請求的請求頭信息匹配請求映射
@RequestMapping注解的headers屬性是一個字符串類型的數組,可以通過四種表達式設置請求頭信息和請求映射的匹配關系
"header"
:要求請求映射所匹配的請求必須攜帶header請求頭信息
"!header"
:要求請求映射所匹配的請求必須不能攜帶header請求頭信息
"header=value"
:要求請求映射所匹配的請求必須攜帶header請求頭信息且header=value
"header!=value"
:要求請求映射所匹配的請求必須攜帶header請求頭信息且header!=value
注意:
若當前請求滿足@RequestMapping注解的value和method屬性,但是不滿足headers屬性,此時頁面顯示404錯誤,即資源未找到。
原始方式:/deleteUser?id=1
rest方式:/deleteUser/1
SpringMVC路徑中的占位符常用于RESTful風格中,當請求路徑中將某些數據通過路徑的方式傳輸到服務器中,就可以在相應的@RequestMapping注解的value屬性中通過占位符{xxx}
表示傳輸的數據,在通過==@PathVariable==注解,將占位符所表示的數據賦值給控制器方法的形參
<a th:href="@{/testRest/1/admin}" rel="external nofollow" >測試路徑中的占位符-->/testRest</a><br>
@RequestMapping("/testRest/{id}/{username}") public String testRest(@PathVariable("id") String id, @PathVariable("username") String username){ System.out.println("id:"+id+",username:"+username); return "success"; } //最終輸出的內容為-->id:1,username:admin
將HttpServletReques作為控制器方法的形參,此時HttpServletRequest
類型的參數表示封裝了當前請求的請求報文的對象
@RequestMapping("/testParam") public String testParam(HttpServletRequest request){ String username = request.getParameter("username"); String password = request.getParameter("password"); System.out.println("username:"+username+",password:"+password); return "success"; }
在控制器方法的形參位置,設置和請求參數同名的形參,當瀏覽器發送請求,匹配到請求映射時,在DispatcherServlet
中就會將請求參數賦值給相應的形參
<a th:href="@{/testParam(username='admin',password=123456)}" rel="external nofollow" >測試獲取請求參數-->/testParam</a><br>
@RequestMapping("/testParam") public String testParam(String username, String password){ System.out.println("username:"+username+",password:"+password); return "success"; }
注:
若請求所傳輸的請求參數中有多個同名的請求參數,此時可以在控制器方法的形參中設置字符串數組或者字符串類型的形參接收此請求參數
若使用字符串數組類型的形參,此參數的數組中包含了每一個數據
若使用字符串類型的形參,此參數的值為每個數據中間使用逗號拼接的結果
@RequestParam是將請求參數和控制器方法的形參創建映射關系
@RequestParam
注解一共有三個屬性:
value:指定為形參賦值的請求參數的參數名
required:設置是否必須傳輸此請求參數,默認值為true
若設置為true時,則當前請求必須傳輸value所指定的請求參數,若沒有傳輸該請求參數,且沒有設置defaultValue屬性,則頁面報錯
400:Required String parameter 'xxx' is not present;
若設置為false,則當前請求不是必須傳輸value所指定的請求參數,若沒有傳輸,則注解所標識的形參的值為null
defaultValue:不管required屬性值為true或false,當value所指定的請求參數沒有傳輸或傳輸的值為""時,則使用默認值為形參賦值
@RequestHeader是將請求頭信息和控制器方法的形參創建映射關系
@RequestHeader
注解一共有三個屬性:value、required、defaultValue,用法同@RequestParam
@CookieValue是將**cookie
數據**和控制器方法的形參創建映射關系
@CookieValue
注解一共有三個屬性:value、required、defaultValue,用法同@RequestParam
可以在控制器方法的形參位置設置一個實體類類型的形參,此時若瀏覽器傳輸的請求參數的參數名和實體類中的屬性名一致,那么請求參數就會為此屬性賦值
<form th:action="@{/testpojo}" method="post"> 用戶名:<input type="text" name="username"><br> 密碼:<input type="password" name="password"><br> 性別:<input type="radio" name="sex" value="男">男<input type="radio" name="sex" value="女">女<br> 年齡:<input type="text" name="age"><br> /.// 郵箱:<input type="text" name="email"><br> <input type="submit"> </form>
@RequestMapping("/testpojo") public String testPOJO(User user){ System.out.println(user); return "success"; } //最終結果-->User{id=null, username='張三', password='123', age=23, sex='男', email='123@qq.com'}
@RequestMapping("/testServletAPI") public String testServletAPI(HttpServletRequest request){ request.setAttribute("testScope", "hello,servletAPI"); return "success"; }
ModelAndView
有Model
和View
的功能:
Model
主要用于向請求域共享數據
View
主要用于設置視圖,實現頁面跳轉
@RequestMapping("/testModelAndView") public ModelAndView testModelAndView(){ /** * ModelAndView有Model和View的功能 * Model主要用于向請求域共享數據 * View主要用于設置視圖,實現頁面跳轉 */ ModelAndView mav = new ModelAndView(); //向請求域共享數據 mav.addObject("testScope", "hello,ModelAndView"); //設置視圖,實現頁面跳轉 mav.setViewName("success"); return mav; }
@RequestMapping("/testModel") public String testModel(Model model){ model.addAttribute("testScope", "hello,Model"); return "success"; }
3.4使用map向request域對象共享數據
@RequestMapping("/testMap") public String testMap(Map<String, Object> map){ map.put("testScope", "hello,Map"); return "success"; }
3.5使用ModelMap向request域對象共享數據
@RequestMapping("/testModelMap") public String testModelMap(ModelMap modelMap){ modelMap.addAttribute("testScope", "hello,ModelMap"); return "success"; }
3.6Model、ModelMap、Map的關系
Model
、ModelMap
、Map
類型的參數其實本質上都是 BindingAwareModelMap
類型的
public interface Model{} public class ModelMap extends LinkedHashMap<String, Object> {} public class ExtendedModelMap extends ModelMap implements Model {} public class BindingAwareModelMap extends ExtendedModelMap {}
3.7向session域共享數據
@RequestMapping("/testSession") public String testSession(HttpSession session){ session.setAttribute("testSessionScope", "hello,session"); return "success"; }
3.8向application域共享數據
@RequestMapping("/testApplication") public String testApplication(HttpSession session){ ServletContext application = session.getServletContext(); application.setAttribute("testApplicationScope", "hello,application"); return "success"; }
HttpMessageConverter:報文信息轉換器,將請求報文轉換為Java對象,或將Java對象轉換為響應報文
HttpMessageConverter
提供了兩個注解和兩個類型:@RequestBody
,@ResponseBody
,RequestEntity
,ResponseEntity
@RequestBody可以獲取請求體,需要在控制器方法設置一個形參,使用@RequestBody
進行標識,當前請求的請求體就會為當前注解所標識的形參賦值
<form th:action="@{/testRequestBody}" method="post"> 用戶名:<input type="text" name="username"><br> 密碼:<input type="password" name="password"><br> <input type="submit"> </form>
@RequestMapping("/testRequestBody") public String testRequestBody(@RequestBody String requestBody){ System.out.println("requestBody:"+requestBody); return "success"; } /*輸出結果: requestBody:username=admin&password=123456 */
RequestEntity封裝請求報文的一種類型,需要在控制器方法的形參中設置該類型的形參,當前請求的請求報文就會賦值給該形參,可以通過getHeaders()
獲取請求頭信息,通過getBody()
獲取請求體信息
@RequestMapping("/testRequestEntity") public String testRequestEntity(RequestEntity<String> requestEntity){ System.out.println("requestHeader:"+requestEntity.getHeaders()); System.out.println("requestBody:"+requestEntity.getBody()); return "success"; }
輸出結果:
requestHeader:[host:"localhost:8080", connection:"keep-alive", content-length:"27", cache-control:"max-age=0", sec-ch-ua:"" Not A;Brand";v="99", "Chromium";v="90", "Google Chrome";v="90"", sec-ch-ua-mobile:"?0", upgrade-insecure-requests:"1", origin:"http://localhost:8080", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36"] requestBody:username=admin&password=123
@ResponseBody用于標識一個控制器方法,可以將該方法的返回值直接作為響應報文的響應體響應到瀏覽器
@RequestMapping("/testResponseBody") @ResponseBody public String testResponseBody(){ return "success"; }
結果:瀏覽器頁面顯示success
@RestController注解是springMVC
提供的一個復合注解,標識在控制器的類上,就相當于為類添加了@Controller
注解,并且為其中的每個方法添加了@ResponseBody
注解
ResponseEntity用于控制器方法的返回值類型,該控制器方法的返回值就是響應到瀏覽器的響應報文
以上就是SpringMVC常用注解功能及屬性是怎樣的,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。