무한참조

    [Springboot] 블로그 만들기 (36)_무한참조 방지하기

    Board.java @Data @NoArgsConstructor @AllArgsConstructor @Builder @Entity public class Board { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) // auto_increment private int id; @Column(nullable = false, length = 100) private String title; @Lob private String content; private int count; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name="userId") private User user; @OneToMany(mappedBy = ..