JSON转为Java实体类

//用这jar包
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;


//两行解决
JSONObject jsonObject = JSONObject.parseObject(responseEntity.getBody());
Weather weather = JSON.parseObject(String.valueOf(jsonObject), Weather.class);

就这就这? 就这
JSON转为Java实体类

上一篇:Spring Cloud Alibaba 使用 feign 和 rebion 进行服务消费


下一篇:Spring Cloud Alibaba