toString() 메소드를 자동으로 생성해준다.
exclude : 특정 필드를 toString() 결과에서 제외시킨다.
@ToString(exclude = "pw")
public class Comment {
private Long id;
private String name;
private String content;
private String pw;
}
Comment comment = new Comment();
comment.setId(1L);
comment.setName("comment1");
comment.setComment("댓글입니다.");
comment.setPw("1234");
System.out.println(comment);
// User(id=1, name=comment1, comment=댓글입니다.)