一、什么是ObjectMapper?

  • ObjectMapper类是Jackson库的主要类,它提供一些功能将数据集或对象转换的实现。
  • 它将使用JsonParser和JsonGenerator实例来实现JSON的实际读/写。

    二、ObjectMapper怎么使用?

    2.1 配置

    2.1.1 普通Java项目(引入如下依赖即可)

    ```xml com.fasterxml.jackson.core jackson-databind 2.9.5
com.fasterxml.jackson.core jackson-core 2.9.5

com.fasterxml.jackson.core jackson-annotations 2.9.5

  1. <a name="xraBh"></a>
  2. #### 2.1.2 Sring Boot项目
  3. **重要说明**:<br />由于Spring Boot的自动配置JacksonAutoConfiguration中有如下图所示的依赖引入和配置,所以不需要我们额外配置<br />![](https://cdn.nlark.com/yuque/0/2021/png/766178/1621221407389-bb7fe061-d110-4ed9-bd21-d474a8637a3c.png#clientId=ufe8638f9-411b-4&from=paste&id=u99754a7c&margin=%5Bobject%20Object%5D&originHeight=489&originWidth=914&originalType=url&status=done&style=none&taskId=u5ec49fea-f760-42b0-94b7-1c869935225)<br />![](https://cdn.nlark.com/yuque/0/2021/png/766178/1621221407393-634b6fdd-4e68-4c79-8b8b-f7fc3c3ba49b.png#clientId=ufe8638f9-411b-4&from=paste&id=uc5ab440e&margin=%5Bobject%20Object%5D&originHeight=554&originWidth=1284&originalType=url&status=done&style=none&taskId=u3ed2b54e-c251-4b2d-a632-2bad2e0bb15)
  4. <a name="gyG9X"></a>
  5. ### 2.2 实战
  6. **User类**
  7. ```java
  8. 1 @Data
  9. 2 @EqualsAndHashCode(callSuper = false)
  10. 3 @Accessors(chain = true)
  11. 4 public class User implements Serializable {
  12. 5
  13. 6 private static final long serialVersionUID = 1L;
  14. 7
  15. 8 // 姓名
  16. 9 private String name;
  17. 10
  18. 11 // 性别
  19. 12 private String sex;
  20. 13
  21. 14 // 年龄
  22. 15 private Integer age;
  23. 16 }

2.2.1 Java对象、集合转JSON

  1. 1 public static void main(String[] args) throws IOException {
  2. 2
  3. 3 ObjectMapper objectMapper = new ObjectMapper();
  4. 4
  5. 5 User user = new User();
  6. 6 user.setName("张三");
  7. 7 user.setAge(20);
  8. 8 user.setSex("男");
  9. 9
  10. 10 List<User> userList = new ArrayList<>();
  11. 11 userList.add(user);
  12. 12
  13. 13 // 对象转换为JSON
  14. 14 String userJsonString = objectMapper.writeValueAsString(user);16
  15. 17 // 集合转换为JSON
  16. 18 String userListJsonString = objectMapper.writeValueAsString(userList);20 }

2.2.2 JSON转Java对象、集合

  1. 1      // JOSN转对象(java对象)
  2. 2 User newUser = objectMapper.readValue(userJsonString, User.class);
  3. 3
  4. 4 // JOSN转集合(集合)
  5. 5 List<User> list = objectMapper.readValue(userListJsonString, new TypeReference<List<User>>(){});

2.2.3 json转JsonNode、ObjectNode

说明:
Jackson的JsonNode和ObjectNode两个类,前者是不可变的,一般用于读取。后者可变,一般用于创建Json对象图。

  1. 1      // json转JsonNode
  2. 2 JsonNode jsonNode = objectMapper.readTree(userJsonString);
  3. 3 String sex = jsonNode.get("sex").asText();
  4. 4
  5. 5 // JsonNode转ObjectNode
  6. 6 ObjectNode objectNode = (ObjectNode)jsonNode;
  7. 7
  8. 8 // json转JsonNode
  9. 9 JsonNode jsonNodeList = objectMapper.readTree(userListJsonString);
  10. 10
  11. 11 // JsonNode转ObjectNode
  12. 12 ArrayNode arrayNode = (ArrayNode)jsonNodeList;

2.2.4 jsonNode转对象、集合

  1. 1      // jsonNode转为json字符串
  2. 2 String jsonNodeString = objectMapper.writeValueAsString(jsonNode);
  3. 3 String jsonNodeListString = objectMapper.writeValueAsString(jsonNodeList);
  4. 4
  5. 5 // json字符串转对象、集合
  6. 6 User user1 = objectMapper.readValue(jsonNodeString, User.class);
  7. 7 List<User> list1 = objectMapper.readValue(jsonNodeListString, new TypeReference<List<User>>() {});

2.3 注意事项

2.3.1 微服务中从其他服务获取过来的对象,如果从Object强转为自定义的类型会报错,利用ObjectMapper转换。

正确示例:
说明:Schedule类、OutpOrderBill类都是类似于User类的Java对象。

  1. // 对象
  2. Schedule schedule = objectMapper.convertValue(callNurseCenterService.getSchedule(registRecord.getScheCode()).getData(), Schedule.class);
  3. // 泛型为对象的集合
  4. List<OutpOrderBill> outpOrderBillList = objectMapper.convertValue(
  5. callChargeCenterService.getOrderBillByOrderCode(orders.getOrgCode(),orders.getOrderCode()).getData(),
  6. new TypeReference<List<OutpOrderBill>>() {});

2.3.2 上面转换的过程中,如果返回的字段你不是都需要,需要忽略其中的几个字段,在自定义的类中添加标红注解

  1. 1 @Data
  2. 2 @EqualsAndHashCode(callSuper = false)
  3. 3 @Accessors(chain = true)
  4. 4 @JsonIgnoreProperties(ignoreUnknown = true)
  5. 5 public class User implements Serializable {
  6. 6
  7. 7 private static final long serialVersionUID = 1L;
  8. 8
  9. 9 ////提供有这个参数,但是不想获取
  10. 10 // // 姓名
  11. 11 // private String name;
  12. 12
  13. 13 // 性别
  14. 14 private String sex;
  15. 15
  16. 16 // 年龄
  17. 17 private Integer age;
  18. 18 }

如果不想添加注解,可以使用下面两种方式
第一种方式:

  1. ObjectMapper mapper = new ObjectMapper().setVisibility(JsonMethod.FIELD,Visibility.ANY);
  2. mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
  3. 第二种方式:
  4. ObjectMapper objectMapper = new ObjectMapper();
  5. mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);

2.3.3 在转换的过程中,有可能有的属性被设成空就不序列化等的需求,可以在类的属性上或直接在类上加上一下注解。用在属性上就是只针对一个属性,用在类上就是针对类里的所有属性。

  1. @JsonInclude(Include.NON_NULL)
  2. @JsonInclude(Include.Include.ALWAYS) 默认
  3. @JsonInclude(Include.NON_DEFAULT) 属性为默认值不序列化
  4. @JsonInclude(Include.NON_EMPTY) 属性为 空(“”) 或者为 NULL 都不序列化
  5. @JsonInclude(Include.NON_NULL) 属性为NULL 不序列化

参考网址:
Jackson-1.9.9在线文档