I have One-To-Many relationship, here is my code
@Entity @Table(name = \"catalog\") public class Catalog { @Id @GeneratedValue(strategy = GenerationType
"You don't serialize in your JSON the children entities by using the com.fasterxml.jackson.annotation.JsonIgnore property"
com.fasterxml.jackson.annotation.JsonIgnore
Add @JsonIgnore for hibernate lazy loading properties eg. @ManyToOne. That should work
@JsonIgnore
@ManyToOne