An infinite recursion occurs when one or several recursive methods keep on calling each other and never reaching a terminal case.
First, here are my entities. Player : @Entity @JsonIdentityInfo(generator=ObjectIdGenerators.UUIDGenerator.class, property="id") public class Player { // other fields @ManyToOne @…
java spring-data-jpa infinite-recursionI'm trying to use a function in order to read in different models. Using the code below without a function …
r nested infinite-recursion