一、依赖
<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.73</version> </dependency>
二、使用场景
2.1 对象转JSONObject
envGoodVO.setGoodsName(robotSchedualMessage.getDestinationId()); JSONObject envGoodVOJson = (JSONObject) JSONObject.toJSON(envGoodVO);
2.2 JSONObject转对象
JSONObject.parseObject(envGoodVOJson.toJSONString(), Map.class);