Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

@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":

     [  

      {   

      },

      { 

      }
    ]
   }
like image 753
user5783530 Avatar asked Mar 12 '23 21:03

user5783530


1 Answers

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

like image 67
varren Avatar answered Mar 23 '23 05:03

varren