[comment] 상태를 가지는 객체에 Getter Setter를 쓰지마라?!
Roel Downey
더 성장하기 위해 comment 받은 부분을 기록 하려고 한다. 상황 User 라는 Entity를 만들어라. User에는 email, password가 있다. 지금은 간단하지만 회원가입에 쓰려면 잘 설계 해봐! 아 ! 그건 쉽지!! class User { private final Email email; private String password; public Email getEmail() { return email; } public String getPassword() { return password; } public void setPassword(String pw) { this.password = pw; } } comment 상태를 가지는 객체의 데이터를 get으로 꺼내려 하지말고 객체에 메시지를 보내..