I\'m trying to map a json (string format) to an object and I get the following error
com.fasterxml.jackson.databind.JsonMappingException: Multiple back-
If you use @JsonBackReference
on more than one getter/setter method in your project, you should distinguish them with a specific reference name.
Maybe only one 'defaultReference'
is allowed in the latest version?
e.g
In MovementView.java
@JsonBackReference(value="user-movement")
public User getUser() {
return user;
}
In User.java
@JsonManagedReference(value="user-movement")
public MovementView getMovementView() {
return movementView;
}