问题描述
用spring boot做物联网后端时发现无法获取post请求的参数
问题分析
查阅资料后发现服务端进行接收json的时候不能直接用参数接收。对比post请求的数据格式,发现请求数据为json格式
解决方法
- 将请求参数以流的形式读取,然后转换为json对象
try {
//利用InputStreamReader将字节流转换为字符流
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(request.getInputStream()));
String string=null;
StringBuffer stringBuffer=new StringBuffer();
//读取字符流的字符拼接在stringBuffer,StringBuffer在进行字符串处理时,不生成新的对象,在内存使用上要优于String类
while((string=bufferedReader.readLine())!=null){
stringBuffer.append(string);
}
//转换为json对象
JSONObject json = JSONObject.parseObject(stringBuffer.toString());
} catch (IOException e) {
e.printStackTrace();
}
用到的依赖
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.28</version>
</dependency>
- 利用@RequestBody注解:常用来处理content-type不是默认的application/x-www-form-urlcoded编码的内容,比如说:application/json或者是application/xml等。一般情况下来说常用其来处理application/json类型
@ResponseBody
@RequestMapping("/iot")
public Key iot(@RequestBody Key key){
********
retun key;
}