0条评论
还没有人评论过~
springmvc怎么接收安卓端传过来的json串
用@RequestBody注解
如果参数放到请求实体上:
1、得到JSON字符串
String requestBody = request.getAttribute(“requestBody”).toString();
//2、字符串转换成对象
方法上添加
@ResponseBody
@RequestMapping("/path")