springmvc实现json交互-requestBody和responseBody
json数据交互
1.为什么要进行json数据交互
json数据格式在接口调用中、html页面中较常用,json格式比较简单,解析还比较方便。
比如:webservice接口,传输json数据.
2.springmvc进行json交互
(1)请求json、输出json,要求请求的是json串,所以在前端页面中需要将请求的内容转成json,不太方便。
(2)请求key/value、输出json。此方法比较常用。
3.环境准备
3.1加载json转的jar包
springmvc中使用jackson的包进行json转换(@requestbody和@responsebody使用下边的包进行json转),如下:
jackson-core-asl-1.9.11.jar
jackson-mapper-asl-1.9.11.jar
@requestbody作用:
@requestbody注解用于读取http请求的内容(字符串),通过springmvc提供的httpmessageconverter接口将读到的内容转换为json、xml等格式的数据并绑定到controller方法的参数上。
本例子应用:
@requestbody注解实现接收http请求的json数据,将json数据转换为java对象
@responsebody作用:
该注解用于将controller的方法返回的对象,通过httpmessageconverter接口转换为指定格式的数据如:json,xml等,通过response响应给客户端
本例子应用:
@responsebody注解实现将controller方法返回对象转换为json响应给客户端
3.2配置json转换器
在注解适配器中加入messageconverters
<!--注解适配器 --> <bean class="org.springframework.web.servlet.mvc.method.annotation.requestmappinghandleradapter"> <property name="messageconverters"> <list> <bean class="org.springframework.http.converter.json.mappingjacksonhttpmessageconverter"></bean> </list> </property> </bean>
注意:如果使用<mvc:annotation-driven /> 则不用定义上边的内容。
4.json交互测试
4.1输入json串,输出是json串
4.1.1jsp页面
使用jquery的ajax提交json串,对输出的json结果进行解析。
使用jduery别忘记引入jquery-1.4.4.min.js
<%@ page language="java" import="java.util.*" pageencoding="utf-8"%> <% string path = request.getcontextpath(); string basepath = request.getscheme()+"://"+request.getservername()+":"+request.getserverport()+path+"/"; %> <!doctype html public "-//w3c//dtd html 4.01 transitional//en"> <html> <head> <base href="<%=basepath%>" rel="external nofollow" rel="external nofollow" > <title>json交互测试</title> <script type="text/javascript" src="${pagecontext.request.contextpath }/js/jquery-1.4.4.min.js"></script> <script type="text/javascript"> //请求的是json,输出的是json function reuqestjson(){ $.ajax({ type:'post', url:'${pagecontext.request.contextpath }/requestjson.action', contenttype:'application/json;charset=utf-8', //数据格式是json串,商品信息 data:'{"name":"手机","price":999}', success:function(data){//返回json结果 alert(data); } }); } </script> </head> <body> <input type="button" onclick="reuqestjson()" value="请求的是json,输出的是json"/> </body> </html>
4.1.2controller
package cn.edu.hpu.ssm.controller; import org.springframework.stereotype.controller; import org.springframework.web.bind.annotation.requestbody; import org.springframework.web.bind.annotation.requestmapping; import org.springframework.web.bind.annotation.responsebody; import cn.edu.hpu.ssm.po.itemscustom; //json交互测试 @controller public class jsontext { //请求json(商品信息),输出json(商品信息) //@requestbody将请求的商品信息的json串转成itemscustom对象 //@responsebody将itemscustom转成json格式输出 @requestmapping("/requestjson") public @responsebody itemscustom requestjson(@requestbody itemscustom itemscustom){ //@responsebody将itemscustom转成json格式输出 return itemscustom; } }
4.1.3测试结果
4.2输入key/value,输出是json串
4.2.1jsp页面
使用jquery的ajax提交key/value串,对输出的json结果进行解析。
<%@ page language="java" import="java.util.*" pageencoding="utf-8"%> <% string path = request.getcontextpath(); string basepath = request.getscheme()+"://"+request.getservername()+":"+request.getserverport()+path+"/"; %> <!doctype html public "-//w3c//dtd html 4.01 transitional//en"> <html> <head> <base href="<%=basepath%>" rel="external nofollow" rel="external nofollow" > <meta http-equiv="content-type" content="text/html;charset=utf-8" > <title>json交互测试</title> <script type="text/javascript" src="${pagecontext.request.contextpath }/js/jquery-1.4.4.min.js"></script> <script type="text/javascript"> //请求是key/value,输出是json function responsejson(){ $.ajax({ type:'post', url:'${pagecontext.request.contextpath }/responsejson.action', //请求的是key/value,这里不需要指定contenttype,因为默认就是key/value类型 //contenttype:'application/json;charset=utf-8', //数据格式是json串,商品信息 data:'name=手机&price=999', success:function(data){//返回json结果 alert(data); } }); } </script> </head> <body> <input type="button" onclick="requestjson()" value="请求的是key/value,输出的是json"/> </body> </html>
4.2.2controller
package cn.edu.hpu.ssm.controller; import org.springframework.stereotype.controller; import org.springframework.web.bind.annotation.requestbody; import org.springframework.web.bind.annotation.requestmapping; import org.springframework.web.bind.annotation.responsebody; import cn.edu.hpu.ssm.po.itemscustom; //json交互测试 @controller public class jsontext { //请求key/value(商品信息),输出json(商品信息) @requestmapping("/responsejson") public @responsebody itemscustom responsejson(itemscustom itemscustom){ //@responsebody将itemscustom转成json格式输出 system.out.println("前台传过来得商品名:"+itemscustom.getname()); return itemscustom; } }
4.2.3测试
后台控制台输出了"前台传过来的商品名:手机",且查看http数据可以看到json数据的反馈。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
上一篇: php 自定义错误日志实例详解