I\'m using SpringBoot and JPA to build a REST interface.
Now, I have a strange JSON returned for the list of products fetched from the database. Let\'s say that I h
Adding @JsonIgnore worked for me
@OneToMany(mappedBy = "policy") @JsonIgnore private List payments;
@JeanValjean your are the best