• JSON与实体类之间的互相转换!!


    一、意义

    在我们调用三方平台接口时,经常需要将我们封装的实体类转换为json作为传参,或者是当我们接收报文时接收的为json数据想要转换为我们自己封装的实体类。

    1实体类转JSON

    1. public static void main(String[] args) throws JsonProcessingException {
    2. user user = new user();
    3. user.setId(1001);
    4. user.setUsername("张三");
    5. user.setPassword("123456");
    6. user.setTeach(false);
    7. System.out.println(user);
    8. ObjectMapper objectMapper=new ObjectMapper();
    9. String value = objectMapper.writeValueAsString(user);
    10. System.out.println(JSON.toJSONString(user));
    11. System.out.println(value);
    12. }

    结果:

    2JSON转实体类

    1. public static void main(String[] args) throws JsonProcessingException {
    2. JSONObject jsonObject = new JSONObject();
    3. jsonObject.put("id",1001);
    4. jsonObject.put("username","张三");
    5. jsonObject.put("teach","false");
    6. jsonObject.put("password","123456");
    7. jsonObject.put("student","1");
    8. ObjectMapper objectMapper=new ObjectMapper();
    9. user user = objectMapper.readValue(jsonObject.toString(), user.class);
    10. System.out.println(user);
    11. }

    需要注意的是如果我们的json数据有五个字段而实体类中只有四个字段的话无法一 一映射会报错

    Exception in thread "main" com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "student" (class com.newstart.model.user), not marked as ignorable (4 known properties: "id", "teach", "username", "password"])
     at [Source: (String)"{"password":"123456","student":"1","teach":"false","id":1001,"username":"张三"}"; line: 1, column: 33] (through reference chain: com.newstart.model.user["student"])

     

    所以我们需要在对应的实体类上加一个注解

    @JsonIgnoreProperties(ignoreUnknown = true)

    该注解的作用是在将实体类进行json序列化反序列化时可以将无法映射的属性忽略,针对的是jackson。如果fastjson则不存在这个问题,会自动给忽略不存在的属性

     结果:

    此外还有很多种转换方式!!!

  • 相关阅读:
    JavaWeb【Tomcat】
    C# List集合赋值
    Linux任务调度
    SpringBoot项目中使用线程池
    蚂蚁集团、浙江大学联合发布开源大模型知识抽取框架OneKE
    SpringBoot整合EasyExcel
    myssql基于Spring Boot的宠物猫店管理系统的设计与实现毕业设计源码140909
    论文笔记:The Impact of AI on Developer Productivity:Evidence from GitHub Copilot
    SMTP协议解读以及如何使用SMTP协议发送电子邮件
    jsp基础语法
  • 原文地址:https://blog.csdn.net/m0_75015491/article/details/132859202