Jpa를 이용하여 게시판 만들어 보기 4댓글/대댓글이런 형식으로 댓글과 대댓글을 작성하고 수정할 수 있다. 댓글 엔티티@Entity@NoArgsConstructor@Getter@Setter@Table(name = "comment")public class Comment { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long replyId; @Column private Long boardId; @Column private Long commentId; @Column private String userId; @Column private String contents; @Colum..