springmvc怎么接收安卓端传过来的json串
用@RequestBody注解
如果参数放到请求实体上: 1、得到JSON字符串 String requestBody = request.getAttribute(“requestBody”).toString(); //2、字符串转换成对象
这种方法和使用原生servlet没什么区别吧
方法上添加 @ResponseBody @RequestMapping("/path")