当前位置:首页 > java > 正文内容

springboot 服务端获取前端传过来的参数7种方式

关中浪子3年前 (2021-11-08)java1566
买泛域名SSL证书 送5斤装现摘猕猴桃一箱、同时提供技开源商城搭建免费技术支持。
泛域名ssl证书 239元1年送1个月、单域名39元1年,Sectigo(原Comodo证书)全球可信证书,强大的兼容性,高度安全性,如有问题7天内可退、可开发票
加微信VX 18718058521 备注SSL证书
【腾讯云】2核2G4M云服务器新老同享99元/年,续费同价

1、直接把表单的参数写在Controller相应的方法的形参中,适用于GET 和 POST请求方式

"/tools" "/addUser1""username is:"+"password is:"+ "success"

测试代码

POST请求方式
  <script>     xhr = 'POST', 'http://localhost:8080/tools/addUser1') 
    xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded''username=zhangsan&password=123') 
    xhr.onload=(xhr.readyState!==4)  </script>
GET请求方式: 
 <script>     xhr = 'GET', 'http://localhost:8080/tools/addUser1?username=zhangsan&password=123') 
    xhr.send() 
    xhr.onload=(xhr.readyState!==4)  </script>

2、通过HttpServletRequest接收,适用于GET 和 POST请求方式。

"/tools" "/addUser2"=request.getParameter("username"=request.getParameter("password""username is:"+"password is:"+ "success"

测试代码同上

3、通过一个bean来接收,适用于GET 和 POST请求方式
(1)建立一个和表单中参数对应的bean

@Data
@Builder
@AllArgsConstructor
@NoArgsConstructorpublic class DemoUser {    private String username;    private String password;
}

(2)用这个bean来封装接收的参数

"/tools" "/addUser3""username is:"+"password is:"+ "success"

测试代码同上

4、通过@PathVariable获取路径中的参数,适用于GET请求

"/tools" ="/addUser4/{username}/{password}",method="username is:"+"password is:"+ "success"

测试代码

  <script>    var xhr = new XMLHttpRequest()
    xhr.open('GET', 'http://localhost:8080/tools/addUser4/username=zhangsan/password=123') // 设置请求行    xhr.send() 
    xhr.onload=function(){      if(xhr.readyState!==4) return 
      console.log(xhr.responseText)
    }  </script>

自动将URL中模板变量{username}和{password}绑定到通过@PathVariable注解的同名参数上,即入参后username=zhangsan、password=123

5、使用@ModelAttribute注解获取参数,适用于POST请求

@RestController
@RequestMapping("/tools")public class InnerController {
    @RequestMapping(value="/addUser5",method=RequestMethod.POST)    public String addUser5(@ModelAttribute("user") DemoUser user) {
        System.out.println("username is:"+user.getUsername());
        System.out.println("password is:"+user.getPassword());        return "success";
    }
}

测试代码

  <script>    var xhr = new XMLHttpRequest()
    xhr.open('POST', 'http://localhost:8080/tools/addUser5') // 设置请求行
    xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded')
    xhr.send('username=zhangsan&password=123') 
    xhr.onload=function(){      if(xhr.readyState!==4) return 
      console.log(xhr.responseText)
    }  </script>

6、用注解@RequestParam绑定请求参数到方法入参

当请求参数username不存在时会有异常发生,可以通过设置属性required=false解决,例如: @RequestParam(value="username", required=false)

@RestController
@RequestMapping("/tools")public class InnerController {
    @RequestMapping(value="/addUser6",method=RequestMethod.GET)    public String addUser6(@RequestParam("username") String username,@RequestParam("password") String password) {
        System.out.println("username is:"+username);
        System.out.println("password is:"+password);        return "success";
    }
}

测试代码同上

7、用注解@RequestBody绑定请求参数到方法入参  用于POST请求

@RestController
@RequestMapping("/tools")public class InnerController {

    @RequestMapping(value="/addUser7",method=RequestMethod.POST)    public String addUser7(@RequestBody DemoUser user) {
        System.out.println("username is:"+user.getUsername());
        System.out.println("password is:"+user.getPassword());        return "success";
    }
}

测试代码:    请求头需要指定为json类型

  <script>    var xhr = new XMLHttpRequest()
    xhr.open('POST', 'http://localhost:8080/tools/addUser7') // 设置请求行
    xhr.setRequestHeader('Content-Type','application/json')
    xhr.send('{"username":"zhangsan","password":"123"}') 
    xhr.onload=function(){      if(xhr.readyState!==4) return 
      console.log(xhr.responseText)
    }  </script>
DemoUser这个类为一个实体类,里面定义的属性与URL传过来的属性名一一对应。


找梯子最重要的就是稳定,这个已经上线三年了,一直稳定没有被封过,赶紧下载备用吧!

扫描二维码推送至手机访问。

版权声明:本文由码农翻生发布,如需转载请注明出处。

本文链接:https://lubojian.cn/post/57.html

分享给朋友:

相关文章

springboot  导出数据到 excel

springboot 导出数据到 excel

问题来源:前一段时间公司的项目有个导出数据的需求,要求能够实现全部导出也可以多选批量导出(虽然不是我负责的,我自己研究了研究),我们的项目是xboot前后端分离系统,后端的核心为SpringBoot 2.2.6.RELEASE,因此今天我主...

poi4.0.0读取excel文件时报java.lang.NoClassDefFoundError: org/apache/commons/compress/archivers/zip/ZipFile

最近想用poi写个处理excel的工具,看了一下poi的官网,出了个4.0.0的版本,于是想尝尝鲜,下载了一把poi4.0.0的bin。下载的是下面的文件: 下载完,将压缩包里所有的jar包导入到工程中(当然,如果只需要处理exc...

java使用poi读取excel表格

java使用poi读取excel表格

java读取excel中包括图片、日期、字符串格式。导入依赖        <dependency>    &nbs...

JAVA POI读取EXCEL 最简洁写法

package com.sunland.poi;   import java.io.FileInputStream; import java.io.IOException;  ...

java Scheduled 设置定时任务为每隔5分执行一次

设置定时任务为每天凌晨2点执行和每小时执行一次每天凌晨2点 0 0 2 * * ?和每天隔一小时 0 * */1 * * ?例1:每隔5秒执行一次:*/5 * * * * ?例2:每隔5分执行一次:0 */5 * * * ?在26分、29分...

request.getRemoteAddr() 在使用代理时获取不到IP解决办法

Java获取IP地址:request.getRemoteAddr()警惕项目中需要和第三方平台接口,加了来源IP鉴权功能,测试时发现没有问题,但是部署以后发现存在问题,一直鉴权不通过,一群人抓瞎。我找到那块的代码,跟了一遍流程发现逻辑没有啥...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。