[java] Jackson을 사용하여 JSON을 ArrayList <POJO>로 역 직렬화

MyPojoJSON에서 역 직렬화하는 데 관심 이있는 Java 클래스 가 있습니다. MyPojoDeMixIndeserialization을 지원하기 위해 특별한 MixIn 클래스를 구성했습니다 . MyPojo만 보유 int하고 String적절한 게터와 세터 결합 인스턴스 변수. MyPojoDeMixIn다음과 같이 보입니다.

public abstract class MyPojoDeMixIn {
  MyPojoDeMixIn(
      @JsonProperty("JsonName1") int prop1,
      @JsonProperty("JsonName2") int prop2,
      @JsonProperty("JsonName3") String prop3) {}
}

내 테스트 클라이언트에서 다음을 수행하지만 JsonMappingException유형 불일치와 관련 이 있기 때문에 컴파일 타임에는 작동하지 않습니다 .

ObjectMapper m = new ObjectMapper();
m.getDeserializationConfig().addMixInAnnotations(MyPojo.class,MyPojoDeMixIn.class);
try { ArrayList<MyPojo> arrayOfPojo = m.readValue(response, MyPojo.class); }
catch (Exception e) { System.out.println(e) }

나는 오직 하나만있는 “Response”객체를 생성함으로써이 문제를 완화 할 수 있다는 것을 알고 ArrayList<MyPojo>있지만, 반환하고자하는 모든 단일 유형에 대해 다소 쓸모없는 객체를 생성해야합니다.

나는 또한 JacksonInFiveMinutes를 온라인으로 보았지만 그 내용 Map<A,B>과 그것이 내 문제와 어떻게 관련되는지 이해하는 데 끔찍한 시간 을 보냈 습니다 . 당신이 말할 수 없다면, 나는 완전히 Java를 처음 접했고 Obj-C 배경에서 왔습니다. 그들은 구체적으로 다음과 같이 언급합니다.

POJO 및 “단순”유형에 대한 바인딩 외에도 일반 (유형화 된) 컨테이너에 대한 바인딩의 추가 변형이 하나 있습니다. 이 경우에는 소위 Type Erasure (Java에서 다소 역 호환 방식으로 제네릭을 구현하는 데 사용됨)로 인해 특수 처리가 필요하므로 Collection.class (컴파일되지 않음)와 같은 것을 사용할 수 없습니다.

따라서 데이터를 맵에 바인딩하려면 다음을 사용해야합니다.

Map<String,User> result = mapper.readValue(src, new TypeReference<Map<String,User>>() { });

어떻게 직접 역 직렬화 할 수 ArrayList있습니까?



답변

TypeReference래퍼 를 사용하여 목록으로 직접 역 직렬화 할 수 있습니다 . 예제 방법 :

public static <T> T fromJSON(final TypeReference<T> type,
      final String jsonPacket) {
   T data = null;

   try {
      data = new ObjectMapper().readValue(jsonPacket, type);
   } catch (Exception e) {
      // Handle the problem
   }
   return data;
}

다음과 같이 사용됩니다.

final String json = "";
Set<POJO> properties = fromJSON(new TypeReference<Set<POJO>>() {}, json);

TypeReference Javadoc


답변

또 다른 방법은 배열을 유형으로 사용하는 것입니다. 예 :

ObjectMapper objectMapper = new ObjectMapper();
MyPojo[] pojos = objectMapper.readValue(json, MyPojo[].class);

이렇게하면 Type 개체의 모든 번거 로움을 피할 수 있으며, 목록이 정말로 필요한 경우 항상 다음과 같이 배열을 목록으로 변환 할 수 있습니다.

List<MyPojo> pojoList = Arrays.asList(pojos);

IMHO 이것은 훨씬 더 읽기 쉽습니다.

실제 목록 (수정 가능,의 제한 사항 참조 Arrays.asList())이되도록하려면 다음을 수행하십시오.

List<MyPojo> mcList = new ArrayList<>(Arrays.asList(pojos));


답변

이 변형은 더 간단하고 우아하게 보입니다.

CollectionType typeReference =
    TypeFactory.defaultInstance().constructCollectionType(List.class, Dto.class);
List<Dto> resultDto = objectMapper.readValue(content, typeReference);


답변

나도 같은 문제가 있습니다. ArrayList로 변환 할 json이 있습니다.

계정은 다음과 같습니다.

Account{
  Person p ;
  Related r ;

}

Person{
    String Name ;
    Address a ;
}

위의 모든 클래스는 올바르게 주석 처리되었습니다. TypeReference> () {} 시도했지만 작동하지 않습니다.

그것은 나에게 Arraylist를 제공하지만 ArrayList에는 최종 값을 포함하는 더 많은 연결된 해시 맵을 포함하는 linkedHashMap이 있습니다.

내 코드는 다음과 같습니다.

public T unmarshal(String responseXML,String c)
{
    ObjectMapper mapper = new ObjectMapper();

    AnnotationIntrospector introspector = new JacksonAnnotationIntrospector();

    mapper.getDeserializationConfig().withAnnotationIntrospector(introspector);

    mapper.getSerializationConfig().withAnnotationIntrospector(introspector);
    try
    {
      this.targetclass = (T) mapper.readValue(responseXML,  new TypeReference<ArrayList<T>>() {});
    }
    catch (JsonParseException e)
    {
      e.printStackTrace();
    }
    catch (JsonMappingException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    }

    return this.targetclass;
}

마침내 문제를 해결했습니다. 다음과 같이 Json String의 List를 ArrayList로 직접 변환 할 수 있습니다.

JsonMarshallerUnmarshaller<T>{

     T targetClass ;

     public ArrayList<T> unmarshal(String jsonString)
     {
        ObjectMapper mapper = new ObjectMapper();

        AnnotationIntrospector introspector = new JacksonAnnotationIntrospector();

        mapper.getDeserializationConfig().withAnnotationIntrospector(introspector);

        mapper.getSerializationConfig().withAnnotationIntrospector(introspector);
        JavaType type = mapper.getTypeFactory().
                    constructCollectionType(ArrayList.class, targetclass.getClass()) ;
        try
        {
        Class c1 = this.targetclass.getClass() ;
        Class c2 = this.targetclass1.getClass() ;
            ArrayList<T> temp = (ArrayList<T>) mapper.readValue(jsonString,  type);
        return temp ;
        }
       catch (JsonParseException e)
       {
        e.printStackTrace();
       }
       catch (JsonMappingException e) {
           e.printStackTrace();
       } catch (IOException e) {
          e.printStackTrace();
       }

     return null ;
    }

}


답변

이것은 나를 위해 작동합니다.

@Test
public void cloneTest() {
    List<Part> parts = new ArrayList<Part>();
    Part part1 = new Part(1);
    parts.add(part1);
    Part part2 = new Part(2);
    parts.add(part2);
    try {
        ObjectMapper objectMapper = new ObjectMapper();
        String jsonStr = objectMapper.writeValueAsString(parts);

        List<Part> cloneParts = objectMapper.readValue(jsonStr, new TypeReference<ArrayList<Part>>() {});
    } catch (Exception e) {
        //fail("failed.");
        e.printStackTrace();
    }

    //TODO: Assert: compare both list values.
}


답변