I have two tables has one to one relationship as below:
@Entity @Data @NoArgsConstructor @AllArgsConstructor public class Book { @Id @GeneratedValue(stra
You have a circular dependency between book and bookdetails. You probably need to exclude book from BookDetail or bookDetail from Book.
book
BookDetail
bookDetail
Book