springboot 接收参数,springboot接收get请求参数

  springboot 接收参数,springboot接收get请求参数

  

目录

一、@路径变量二、@RequestHeader三、@RequestParam三、@CookieValue四、@RequestBody

 

  

一、@PathVariable

1.作用映射全球资源定位器(统一资源定位器)路径中的变量

 

  2.使用方法

  @ RestControllerpublic class book controller { @ get mapping(/book/{ id } )public Integer getBook(@ path variable( id )Integer id){//打印参数系统。出去。println(id);返回id;} }3.测试结果

  

二、@RequestHeader

1.作用获取请求头中的参数

 

  2.使用方法

  @ RestControllerpublic class book controller { @ get mapping(/ua )public String getUA(@ request header( User-Agent )String User Agent){//打印参数系统。出去。println(用户代理);返回用户代理} }3.测试结果

  

三、@RequestParam

1.作用获取全球资源定位器(统一资源定位器)的参数

 

  2.使用方法

  @ RestControllerpublic class book controller { @ get mapping(/book )public Integer getbook 2(@ request param( id )Integer id){//打印参数系统。出去。println(id);返回id;} }3.测试结果

  

三、@CookieValue

1.作用获取饼干中的值

 

  2.使用方法

  @ RestControllerpublic class book controller { @ get mapping(/cookie _ value )public String getCV(@ CookieValue( ruid )String ruid){//打印参数系统。出去。println(ruid);返回3.测试结果

  

四、@RequestBody

1.作用获取邮政请求体

 

  2.使用方法

  @ RestControllerpublic class Book controller { @ post mapping(/Book )public Book save Book(@ request body Book Book){//打印参数系统。出去。println(书);还书;} }3.测试结果

  到此这篇关于跳羚请求参数相关注解说明的文章就介绍到这了,更多相关跳羚请求参数内容请搜索盛行信息技术以前的文章或继续浏览下面的相关文章希望大家以后多多支持盛行它!

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: