2012-12-21 3 views
5

Sto usando @JsonTypeInfo per indicare a Jackson 2.1.0 di cercare nella proprietà 'discriminator' informazioni di tipo concreto. Funziona bene ma la proprietà del discriminatore non è impostata su POJO durante la deserializzazione.Proprietà @JsonTypeInfo ignorata durante la deserializzazione POJO

Secondo Javadoc di Jackon (com.fasterxml.jackson.annotation.JsonTypeInfo.Id), dovrebbe:

/** 
* Property names used when type inclusion method ({@link As#PROPERTY}) is used 
* (or possibly when using type metadata of type {@link Id#CUSTOM}). 
* If POJO itself has a property with same name, value of property 
* will be set with type id metadata: if no such property exists, type id 
* is only used for determining actual type. 
*<p> 
* Default property name used if this property is not explicitly defined 
* (or is set to empty String) is based on 
* type metadata type ({@link #use}) used. 
*/ 
public String property() default ""; 

Ecco un test failling

@Test 
public void shouldDeserializeDiscriminator() throws IOException { 

    ObjectMapper mapper = new ObjectMapper(); 
    Dog dog = mapper.reader(Dog.class).readValue("{ \"name\":\"hunter\", \"discriminator\":\"B\"}"); 

    assertThat(dog).isInstanceOf(Beagle.class); 
    assertThat(dog.name).isEqualTo("hunter"); 
    assertThat(dog.discriminator).isEqualTo("B"); //FAILS 
} 

@JsonTypeInfo(
     use = JsonTypeInfo.Id.NAME, 
     include = JsonTypeInfo.As.PROPERTY, 
     property = "discriminator") 
@JsonSubTypes({ 
     @JsonSubTypes.Type(value = Beagle.class, name = "B"), 
     @JsonSubTypes.Type(value = Loulou.class, name = "L") 
}) 
private static abstract class Dog { 
    @JsonProperty("name") 
    String name; 
    @JsonProperty("discriminator") 
    String discriminator; 
} 

private static class Beagle extends Dog { 
} 

private static class Loulou extends Dog { 
} 

Tutte le idee?

risposta

14

alcune stanze sono 'visibili' in questo modo:

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, 
    include = JsonTypeInfo.As.PROPERTY, 
    property = "discriminator", visible=true) 

che sarà poi esporre proprietà type; per impostazione predefinita non sono visibili, quindi non è necessario aggiungere proprietà esplicite per questi metadati.

+0

Copia/incolla dalla mailing list dell'utente di Jackson, ma va bene. –

+4

Sì; principalmente a beneficio di lettori che non sono nella lista. – StaxMan

+2

C'è un modo per farlo in jackson 1.9? – bananasplit