java webmethod 参数_java详解Spring接收web请求参数的方式

本篇文章给大家带来的内容是java详解Spring接收web请求参数的方式 。有一定的参考价值,有需要的朋友可以参考一下,希望对你们有所帮助。

1 查询参数

请求格式:url?参数1=值1&参数2=值2...

同时适用于GET和POST方式

spring处理查询参数的方法又有几种写法:

方法一:

方法参数名即为请求参数名// 查询参数1

@RequestMapping(value = "/test/query1", method = RequestMethod.GET)

public String testQuery1(String username, String password) {

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

方法二:

从HttpServletRequest中提取参数// 查询参数2

@RequestMapping(value = "/test/query2", method = RequestMethod.GET)

public String testQuery2(HttpServletRequest request) {

String username = request.getParameter("username");

String password = request.getParameter("password");

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

方法三:

方法参数名和请求参数名可以不一样,通过@RequestParam注解来绑定参数// 查询参数3

@RequestMapping(value = "/test/query3", method = RequestMethod.GET)

public String testQuery3(@RequestParam("username") String un, @RequestParam("password") String pw) {

System.out.println("username=" + un + ", password=" + pw);

return "username=" + un + ", password=" + pw;

}

方法四:

创建一个实体类对象作为参数承载体,spring会根据参数名称自动将参数绑定到实体类对象的属性上// 查询参数4

@RequestMapping(value = "/test/query4", method = RequestMethod.GET)

public String testQuery4(User user) {

String username = user.getUsername();

String password = user.getPassword();

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

实体类定义如下:@Data

@NoArgsConstructor

@AllArgsConstructor

@Builderpublic class User {

private String username;

private String password;

}

这里用到了第三方库lombok,这样就不需要在代码中手动添加get、set等方法,lombok会自动添加。

发送请求的curl命令如下:curl -i 'http://192.168.1.14:8080/test/query1?username=aaa&password=bbb'

交互报文如下:GET /test/query1?username=aaa&password=bbb HTTP/1.1

Host: 192.168.1.14:8080

User-Agent: curl/7.58.0

Accept: */*HTTP/1.1 200

Content-Type: text/plain;charset=UTF-8

Content-Length: 26

Date: Thu, 25 Oct 2018 07:01:30 GMT

username=aaa, password=bbb

2 表单参数

请求参数不在url中,而是在Body体中,格式为:url?参数1=值1&参数2=值2...

适用于POST方式

表单参数处理方法和前面的请求参数处理方法几乎完全一样,只是RequestMethod注解中将method方法设置成POST方法

方法一:// 表单参数1

@RequestMapping(value = "/test/form1", method = RequestMethod.POST)

public String testForm1(String username, String password) {

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

方法二:// 表单参数2

@RequestMapping(value = "/test/form2", method = RequestMethod.POST)

public String testForm2(HttpServletRequest request) {

String username = request.getParameter("username");

String password = request.getParameter("password");

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

方法三:// 表单参数3

@RequestMapping(value = "/test/form3", method = RequestMethod.POST)

public String testForm3(@RequestParam("username") String un, @RequestParam("password") String pw) {

System.out.println("username=" + un + ", password=" + pw);

return "username=" + un + ", password=" + pw;

}

方法四:// 表单参数4

@RequestMapping(value = "/test/form4", method = RequestMethod.POST)

public String testForm4(User user) {

String username = user.getUsername();

String password = user.getPassword();

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

curl请求命令如下:curl -X POST -i -d "username=aaa&password=bbb" http://192.168.1.14:8080/test/form1

请求和响应报文如下:POST /test/form1 HTTP/1.1

Host: 192.168.1.14:8080

User-Agent: curl/7.58.0

Accept: */*

Content-Length: 25

Content-Type: application/x-www-form-urlencoded

username=aaa&password=bbbHTTP/1.1 200

Content-Type: text/plain;charset=UTF-8

Content-Length: 26

Date: Thu, 25 Oct 2018 07:05:35 GMT

username=aaa, password=bbb

3 路径参数

请求参数为url中的一部分,格式为:url/参数1/参数2...

同时适用于GET和POST方式

代码如下:@RequestMapping(value = "/test/url/{username}/{password}", method = RequestMethod.GET)

public String testUrl(@PathVariable String username, @PathVariable String password) {

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

请求curl命令如下:curl -i http://192.168.1.14:8080/test/url/aaa/bbb

请求和响应报文如下:GET /test/url/aaa/bbb HTTP/1.1

Host: 192.168.1.14:8080

User-Agent: curl/7.58.0

Accept: */*HTTP/1.1 200

Content-Type: text/plain;charset=UTF-8

Content-Length: 26

Date: Thu, 25 Oct 2018 07:07:44 GMT

username=aaa, password=bbb

4 json格式参数

请求参数在Body体中,并且为json格式。需要添加请求头:Content-Type: application/json;charset=UTF-8

适用于POST方式

方法一:

定义实体类,将json对象解析成实力类,需要添加RequestBody注解// json参数1

@RequestMapping(value = "/test/json1", method = RequestMethod.POST)

public String testJson1(@RequestBody User user) {

String username = user.getUsername();

String password = user.getPassword();

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

方法二:

如果不像定义实体类,也可以将json请求直接解析成JSONObject类// json参数2

@RequestMapping(value = "/test/json2", method = RequestMethod.POST)

public String testJson2(@RequestBody JSONObject json) {

String username = json.getString("username");

String password = json.getString("password");

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

方法三:

也可以将json对象直接解析成Map对象// json参数3

@RequestMapping(value = "/test/json3", method = RequestMethod.POST)

public String testJson3(@RequestBody Map userMap) {

String username = userMap.get("username");

String password = userMap.get("password");

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

请求curl命令如下:curl -X POST -i -H 'Content-Type: application/json;charset=UTF-8' -d '{

"username" : "aaa",

"password" : "bbb"

}

'http://192.168.1.14:8080/test/json1

请求和响应报文如下:POST /test/json1 HTTP/1.1

Host: 192.168.1.14:8080

User-Agent: curl/7.58.0

Accept: */*

Content-Type: application/json;charset=UTF-8

Content-Length: 52

{

"username" : "aaa",

"password" : "bbb"

}HTTP/1.1 200

Content-Type: text/plain;charset=UTF-8

Content-Length: 26

Date: Thu, 25 Oct 2018 07:09:06 GMT

username=aaa, password=bbb

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/334981.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

envoy重试_具有Envoy代理的微服务模式,第二部分:超时和重试

envoy重试该博客是系列文章的一部分,该系列文章更深入地介绍了Envoy Proxy和Istio.io ,以及它如何实现一种更优雅的连接和管理微服务的方式。 跟随我christianposta ,紧跟这些博客文章的发布。 什么是Envoy代理 ,它如何工作&…

python中字符串格式化的形式_Python中format函数字符串格式化入门

格式化在程序开发中非常常见,大家肯定不陌生,Python中也存在多重格式化方式,format函数就是其中一种。函数原型format(value[, format_spec])参数意义value: 需要被格式化的字符串format_spec: 格式化的格式函数定义与…

Java的超类/基类Object

文章目录简介主要方法equals简介 所有的类都继承了 Object,即 Object 是所有类的父类,所以所有的 Java 类都继承了 Object 的所有方法。 比如你写一个类如下: public class Question { ... }实际上这个类是继承自 Object 的,默…

网络研讨室_即将举行的网络研讨会:调试生产中Java的5种最佳实践

网络研讨室您的团队是否花费超过10%的时间在生产中调试Java? 将新代码部署到生产中是一项艰巨的任务。 在您的本地环境中起作用的东西在生产中的作用并不相同,您可以通过用户来了解。 不理想吧? 生产中的调试是一个关键要素&…

window部署python项目_Django在Window下的部署

转载 : codingsoho.com前言本文主要介绍利用apache去部署Django项目,所有步骤均在本机Window7和阿里云验证通过。配置本例的基本配置如下:工作目录: C:/virtualenv/zakkabag项目名称: zakkabag最终的安装版本如下,后面…

chrome gwt1.7_快速提示:使用Chrome开发工具调试GWT应用程序

chrome gwt1.7调试是软件开发的重要方面。 拥有正确的工具可以节省大量时间和头痛。 在GWT Super Dev模式之前,经典的Dev模式允许使用JVM调试。 开发人员可以在其IDE中设置断点,并使用调试模式来跟踪错误和错误。 现在,在超级开发模式下&…

java事件编程_java基础 ---Swing事件编程

java基础 ---Swing事件编程GUI的设计就剩个菜单组建,这个组件也是想当于容器套容器,在设计方面没有什么难度,主要是一些事件的响应。还有另一种事件的监听方式,也就是适配器监听方法。1、菜单要设计一个菜单那么有三大组件是不可或…

python3鄙视python2_Python3 正在毁灭 Python的原因分析

Python 3毫不费力地成为发生在Python社区里最糟糕的事。我还记得第一次使用Python的时候,我还在花大量时间在C这块上,而Python就像是我的一次开光。我可以打开文本编辑器用几秒钟或者几分钟写出一个可以工作的程序,而不是用几小时或几天。我记…

Java如何加载类的呢?

JVM加载类 首先查看内存中是否存在该类(内存中所有类都是以Class的实例对象存在),若不存在则会通过环境变量中的路径值在电脑或者其它设备的硬盘中找到该类(即.class文件),然后JVM会将其读取到内存中&…

brew卸载jenv_使用brew,cask和jenv在MacOSX上设置多个Java JRE / JDK

brew卸载jenv昨天在Java9的Jigsaw HackTheTower事件中,我意识到我需要加强我的游戏并改善我现有的机制,以在我的机器上维护几个不同的JDK。 我曾经手动下载jdk,或使用brew cask来安装它们,我会在我的〜/ bash_profile中设置bash …

java过滤器api_springboot集成过滤器

封装自定义接口filter包含两个方法,第一个过滤的路径数组,第二个为过滤器执行的顺序.spring boot 会按照order值的大小,从小到大的顺序来依次过滤。package com.theeternity.common.baseFilter;import javax.servlet.Filter;/*** program: ApiBoot* description: 封…

Servlet 运行原理

文章目录Servlet 如何运行演示 Servlet 运行原理Servlet 如何运行 用户向浏览器地址栏输入:http://ip:port/helloweb/sayHello?namezs 浏览器使用 ip:port(端口号)连接服务器 浏览器将请求数据按照 http 协议打成一个数据包(请求数据包)发送给服务器 请求数据包…

python dicom 器官分割_python+opencv阈值分割

37 #获取像素点的最大值和最小值38 arr_temp np.reshape(img_arr,(lens,))39 max_val max(arr_temp)40 min_val min(arr_temp)41 #图像归一化42 img_arr (img_arr-min_val)/(max_val-min_val)43 #绘制图像并保存44 #保存图片时去掉周围白边45 plt.axis(off)46 fig plt.gcf()47…

解析浏览器访问服务器 Servlet 应用程序的交互过程(Servlet 容器如何处理请求资源路径)

案例 1: 请求资源路径:http://localhost:8080/web01/greeting?namezs 浏览器通过 localhost:8080 连接服务器;服务器在 webapps 目录下寻找 web01 目录,找到后进入web01 目录内寻找 WEB-INF 目录,在进入 WEB-INF 目…

java github_GitHub Research:超过50%的Java记录语句写错了

java github为什么生产日志无法帮助您找到错误的真正根本原因? 询问您是否使用日志文件监视您的应用程序几乎就像询问…您是否喝水。 我们都使用日志,但是我们如何使用它们则是一个完全不同的问题。 在下面的文章中,我们将对日志进行更深入…

yolov5论文_YOLOv5的妙用:学习手语,帮助听力障碍群体

编辑:魔王、杜伟计算机视觉可以学习美式手语,进而帮助听力障碍群体吗?数据科学家 David Lee 用一个项目给出了答案。如果听不到了,你会怎么办?如果只能用手语交流呢?当对方无法理解你时,即使像订…

python制作系统程序与html交互_python+html语音人物交互_flask后台与前端(html)交互的两种方法...

基于python flask框架搭建webflask后台与前端(html)交互的两种方法:方法1 使用flask-wtf 提供的表单用常见的登录为例:// An highlighted blockfrom flask_wtf import Formclass LoginForm(Form): # 登录表单ROLE SelectField(角色, choices[(s, 管理员…

Java 程序执行过程的内存流程图(结合类加载器 ClassLoader 讲解)

Student s new Student(); s.play(); Student s2 new Student();以上代码的执行流程如下: JVM 作为操作系统的一个迚程在系统中执行,那么系统会为 JVM 分配一块内存空间,这块内存空 间被 JVM 分为 3 大块(栈区、堆区、方法区) 一般而言&a…

java javap_javap的用途不断发展:您的Java类文件中隐藏了什么?

java javap什么是Javap,如何使用它以及何时要反汇编类文件? 作为Java开发工具包(JDK)的一部分,我们可以使用许多工具,这些工具有助于更好地理解Java代码。 这些工具之一是javap命令,它使我们能…

虚拟内存越大越好吗_手机的运行内存真的是越大越好吗?6GB和8GB到底又该如何选择?...

许多人买手机,除了看处理器、外观以外,关注最多的莫过于手机的运行内存了。选择一个合适的运行内存几乎关系到整个手机使用寿命和命脉。那么我们现在买手机选择多大的运行内存合适呢?真的是越大越好吗?下面我们就来一起看看吧。选…