이전에 만들었던 Member를 Board로 바꿔서 내용 입력까지 구현해봤다. Entity@Entity@Getter@NoArgsConstructorpublic class Board { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String title; private String contents; public Board(String title, String contents){ this.title = title; this.contents = contents; } public void updateTitle(String title){ th..