Джексон Миксин не работает в Pojo JSON - PullRequest
0 голосов
/ 10 июня 2019

Моя цель - XML ​​для Pojo и Pojo для JSON. Я уже сделал XML для Pojo, используя Jaxb. Теперь я пытаюсь подружиться с Джексоном, используя Джексон Джексб. Где я получаю следующий json, который производит файлы классов JXBElement в json, как показано ниже.

{
  "name" : "{http://xxx.xx.xx.xx.xx.xx.xx}CompositeResponse",
  "declaredType" : "xxx.xx.xx.xx.xx.xx.xxCompositeResponseType",
  "scope" : "javax.xml.bind.JAXBElement$GlobalScope",
  "value" : {
    "CompositeIndividualResponse" : [ {
      "ResponseMetadata" : {
        "ResponseCode" : "HS000000",
        "ResponseDescriptionText" : "Success"
      }
    } ]
  },
  "nil" : false,
  "globalScope" : true,
  "typeSubstituted" : false
}

Как я могу удалить имя, объявляемый тип, область действия, ноль, глобальный объем, тип замененный и получить следующий json

{
 "CompositeResponse":
 {
    "CompositeIndividualResponse" : [ {
      "ResponseMetadata" : {
        "ResponseCode" : "HS000000",
        "ResponseDescriptionText" : "Success"
      }
    } ]
  }
}

Я искал эту запись , но у меня это не работает.
Следующий код, который я пробовал для Джексона Миксина.

public class Main {
    public static interface JAXBElementMixinT {
        @JsonValue
        Object getValue();
    }
    public static void main(String[] args) throws XMLStreamException, IOException {

              ObjectMapper mapper = new ObjectMapper(); 
              AnnotationIntrospector introspector = new  JaxbAnnotationIntrospector(mapper.getTypeFactory());
              mapper.setAnnotationIntrospector(introspector );
              mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
              mapper.addMixIn(JAXBElement.class, JAXBElementMixinT.class); 
              String result = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(employee);
              System.out.println(result);

    }
}

Я тоже попробовал следующий код, но не повезло.

public abstract class JAXBElementMixIn {

    @JsonIgnore abstract String getScope();
    @JsonIgnore abstract boolean isNil();
    @JsonIgnore abstract boolean isGlobalScope();
    @JsonIgnore abstract boolean isTypeSubstituted();
    @JsonIgnore abstract Class getDeclaredType();
}

Может ли кто-нибудь помочь мне, где я не прав и что делать спасибо.

Ответы [ 2 ]

1 голос
/ 10 июня 2019

Я только что столкнулся с этой проблемой на этой неделе и решил ее, удалив кусок

AnnotationIntrospector introspector = new  JaxbAnnotationIntrospector(mapper.getTypeFactory());
              mapper.setAnnotationIntrospector(introspector );

.Я еще не смотрел, как это добавить, но это позволяет мне правильно работать с остальным кодом, который у меня есть, и я больше не вижу оболочку JAXBElement.

0 голосов
/ 11 июня 2019

Наконец-то я смог решить проблему. Согласно ответу @Ryan, мне не нужен следующий код: AnnotationIntrospector introspector = new JaxbAnnotationIntrospector(mapper.getTypeFactory()); mapper.setAnnotationIntrospector(introspector );

Но я должен добавить JaxbAnnotationModule module = new JaxbAnnotationModule(); mapper.registerModule(module), иначе Джексон будет создавать ссылки и метаданные для каждого элемента. Полный код следующий

public class Main {
public static interface JAXBElementMixinT {
    @JsonValue
    Object getValue();
}
public static void main(String[] args) throws XMLStreamException, IOException {

          ObjectMapper mapper = new ObjectMapper(); 
          JaxbAnnotationModule module = new JaxbAnnotationModule(); 
          mapper.registerModule(module)
          mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
          mapper.addMixIn(JAXBElement.class, JAXBElementMixinT.class); 
          String result = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(employee);
          System.out.println(result);

}

}

...