user5783530
user5783530

Reputation: 251

@JsonRootName not working

I have this simple Java Entity and I Need to make it JSon output, which I reach with e web service.

@Entity
@JsonRootName(value = "flights")
public class Flight implements Serializable {

@Transient
private static final long serialVersionUID = 1L;

public Flight() {
    super();
}

public Flight(FlightDestination destinationFrom, FlightDestination destinationTo, Integer flightPrice, Date date,
        Airplane airplaneDetail) {
    super();
    this.destinationFrom = destinationFrom;
    this.destinationTo = destinationTo;
    this.flightPrice = flightPrice;
    this.date = date;
    this.airplaneDetail = airplaneDetail;
}

public Flight(FlightDestination destinationFrom, FlightDestination destinationTo, Integer flightPrice, Date date) {
    super();
    this.destinationFrom = destinationFrom;
    this.destinationTo = destinationTo;
    this.flightPrice = flightPrice;
    this.date = date;
}

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Integer id;

@Enumerated(EnumType.STRING)
private FlightDestination destinationFrom;

@Enumerated(EnumType.STRING)
private FlightDestination destinationTo;

private Integer flightPrice;

@Temporal(TemporalType.DATE)
private Date date;

@OneToOne(cascade = { CascadeType.PERSIST, CascadeType.REMOVE })
@JoinColumn(name = "airplane_fk")
private Airplane airplaneDetail;}

I added @JsonRootName, but I still get my json output in this way :

    [  
      {   

      },

      { 

      }
   ]

What more I have to add to my entity, so finally to get this kind of output:

    {
     "flights":

     [  

      {   

      },

      { 

      }
    ]
   }

Upvotes: 7

Views: 14198

Answers (2)

Anıl Şenocak
Anıl Şenocak

Reputation: 198

you can use following annotations to make a wrapper by using Jackson;

...
@JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = JsonTypeInfo.Id.NAME)
@JsonTypeName("user")
public class LoginResponse {
  private String name;
  private String email;
}

The reponse will be;

{
  "user": {
    "name": "Lucienne",
    "username": "asenocakUser"
  }
}

Upvotes: 7

varren
varren

Reputation: 14731

If you want to use @JsonRootName(value = "flights") you have to set apropriate features on ObjectMapper

ObjectMapper mapper = new ObjectMapper();
mapper.enable(DeserializationFeature.UNWRAP_ROOT_VALUE); 
mapper.enable(SerializationFeature.WRAP_ROOT_VALUE);

But, for List<Flight> this will produce

[  
  {"flights": {}},
  {"flights": {}},
  {"flights": {}},
]

So you probably have to create wraper object:

public class FlightList {
    @JsonProperty(value = "flights")
    private ArrayList<Flight> flights;
}

and this FlightList will have {"flights":[{ }, { }]} output json

Upvotes: 8

Related Questions