亲测SpringBoot参数传递及@RequestBody注解---踩过的坑及解决
springboot 参数传递及@requestbody注解注意点
前台正确的js书写格式是
//点击查询, 执行下面这个函数 $("#searchbycriteria").click(function () { //var paramdata = $("#bck_qry_criteria_form").serializejson();//serializejson()是自定义的form 格式化为json函数 var paramdata = { type:$("#bck_type").val(), title:$("#bck_title").val(), start:$("#bck_start").val(), end:$("#bck_end").val() }; paramdata = json.stringify(paramdata); $.ajax({ type: "post", data: paramdata, url: "/getnews", cache:false, headers : {"content-type" : "application/json;charset=utf-8"}, success: function (data) { var code = data.code; var t = data.t; if (code == 200){alert(json.stringify("提交成功! 我们会尽快联系您!"));} if (code == 500){alert(json.stringify(t));} //$("#input_phone").val("");//清空输入框 } }) });
上面中传递的参数一定要用json.stringify(paramdata); 方法将参数转换成json格式的字符串; 因为springboot 中@requestbody注解要求的必须是json格式的字符串才能注入参数, 第二就是大坑, 大坑, 大坑, 请求中必须 带上请求头,不然会报下面错误
org.springframework.web.httpmediatypenotsupportedexception: content type 'application/x-www-form-urlencoded;charset=utf-8' not supported
后台正确的controller书写格式是
其中consumes = “application/json”, 规范的讲是要加的, 它规范了,前台要传递json格式的参数. 但是如果你不加也是可以的, 亲测不加也能封装到参数.newsparamsmap中属性
@postmapping(value = "/getnews", consumes = "application/json") @responsebody public pageinfo<newslist> getnewslist(@requestbody newsparamsmap map){ system.out.println("这是正确的用法"); return null; }
newsparamsmap 中有integer 有date, 前台传过来都是字符串, springboot,会根据名称一一对应, 将数据转换成相应的类型.
public class newsparamsmap { private integer type; private string title; private date start; private date end; ... set get 方法 ... }
requestbody 作为参数使用
最近在接收一个要离职同事的工作,接手的项目是用springboot搭建的,其中看到了这样的写法:
在code上查看代码片 派生到我的代码片
@requestmapping("dothis") public string dothis(httpservletrequest request, @requestparam("id") long id, // 用户id @requestparam("back_url") string back_url, // 回调地址 @requestbody testentity json_data // json数据,对于java实体类 ){//...
这个是一个请求映射方法,然后用浏览器输入url:
http://127.0.0.1:8080/test/dothis?id=1&back_url=url&json_data={"code":2,"message":"test"}
在这个方法中,使用@requestparam获取参数,然后使用@requestbody对json格式的参数转换为java类型
在运行的时候发现报错:required request body is missing
@requestbody的使用需要加载mappingjackson2httpmessageconverter,但是springboot的官方文档提到,这个是默认已经加载的了,而且json字符串和javabean也没有书写的错误
因此考虑到应该是请求content-type的问题,因为使用浏览器输入url的方式没有办法定义content-type,因此spring无法发现request body
为了证实这个想法,自己书写一个请求类
在code上查看代码片 派生到我的代码片
string add_url = "http://127.0.0.1:8080/test/dothis"; url url = new url(add_url); httpurlconnection connection = (httpurlconnection)url.openconnection(); connection.setdoinput(true); connection.setdooutput(true); connection.setrequestmethod("post"); connection.setusecaches(false); connection.setinstancefollowredirects(true); connection.setrequestproperty("content-type","application/json"); connection.connect(); dataoutputstream out = new dataoutputstream(connection.getoutputstream()); jsonobject obj = new jsonobject(); obj.put("code", -1002); obj.put("message", "msg"); out.writebytes(obj.tostring()); out.flush(); out.close();
请求还是失败,经过调试,发现需要去掉所有的@requestparam注解才能成功
小结一下
1、@requestbody需要把所有请求参数作为json解析,因此,不能包含key=value这样的写法在请求url中,所有的请求参数都是一个json
2、直接通过浏览器输入url时,@requestbody获取不到json对象,需要用java编程或者基于ajax的方法请求,将content-type设置为application/json
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。