在JSON创建父属性(Creating Parent Property in JSON)

2019-10-21 12:25发布

我有要求,创建同一个对象,这意味着它应该像JSON的父母和子女财产

 {"employee": {
   "name":"skanda", 
   "id":"123", 
   "employee":[
      {"id":"345"}
      ]
     }
  }

这是我的Java对象。 请让我知道我能做到这一点。 我应该创建内部类和多了一个Employee对象的实例。 请指教。 我以这样的方式,同样也应该是在通过休息WS传递另一端反序列化设计。 如果我可以使用标注请告知其应标注在这种情况下使用。

public class Employee {
  private String name;
  private String id;
  private List<Employee> list = new ArrayList<Employee>();

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public String getId() {
    return id;
}

public void setId(String id) {
    this.id = id;
}

public List<Employee> getList() {
    return list;
}

public void setList(List<Employee> list) {
    this.list = list;
}

}

Answer 1:

您可以使用杰克逊和注释。 您将需要“杰克逊 - 数据绑定”。

Maven的,加上这样的依赖关系:

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.4.4</version>
</dependency>

有了这样的POJO:

import java.util.List;

import com.fasterxml.jackson.annotation.JsonIdentityInfo;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.fasterxml.jackson.annotation.ObjectIdGenerators;

@JsonRootName(value = "employee")
@JsonIdentityInfo(generator = ObjectIdGenerators.IntSequenceGenerator.class, property = "@id")
public class Employee {

    private String name;

    private String id;

    private List<Employee> employee;

    public String getName() {
        return name;
    }

    public void setName(final String name) {
        this.name = name;
    }

    public String getId() {
        return id;
    }

    public void setId(final String id) {
        this.id = id;
    }

    public List<Employee> getEmployee() {
        return employee;
    }

    public void setEmployees(final List<Employee> employee) {
        this.employee = employee;
    }

}

而像这样的例子:

import java.util.ArrayList;
import java.util.List;

import org.junit.Assert;
import org.junit.Test;

import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;

public class EmployeeTest {

    private static final String EXPECTED_JSON_RESULT = "{\"employee\":{\"@id\":1,\"name\":\"skanda\",\"id\":\"123\",\"employee\":[{\"@id\":2,\"id\":\"345\"}]}}";

    @Test
    public void serializationTest() throws JsonProcessingException {
        final Employee emp1 = new Employee();
        emp1.setId("123");
        emp1.setName("skanda");

        final Employee empL1 = new Employee();
        empL1.setId("345");

        final List<Employee> list = new ArrayList<>();
        list.add(empL1);

        emp1.setEmployees(list);

        final ObjectMapper objectMapper = new ObjectMapper();
        objectMapper.setSerializationInclusion(Include.NON_NULL);
        objectMapper.configure(SerializationFeature.WRAP_ROOT_VALUE, true);

        Assert.assertEquals(EXPECTED_JSON_RESULT, objectMapper.writeValueAsString(emp1));
    }

}

会产生这样的JSON:

{
    "employee":{
        "@id":1,
        "name":"skanda",
        "id":"123",
        "employee":[
            {
                "@id":2,
                "id":"345"
            }
        ]
    }
}

@JsonIdentityInfo将帮助你自我引用,避免StackOverflowError并映射为@id属性。 您可以删除,如果你想。

有关完整文档,请参见https://github.com/FasterXML/jackson



Answer 2:

你可以做到这一点使用JSON杰克逊库: http://jackson.codehaus.org/

一个很好的教程,特别是解决了嵌套的对象是在这里: http://www.mkyong.com/java/how-to-convert-java-object-to-from-json-jackson/

除了这些,谷歌是你的朋友:)



文章来源: Creating Parent Property in JSON