🤍 @AllArgsConstructor모든 필드를 파라미터로 받는 생성자를 자동으로 생성합니다.따라서, 모든 필드를 한 번에 초기화해야 합니다. @AllArgsConstructorpublic class SignupRequestDto { private String name; private LocalDate birth; private String email; private String firstAddress; private String secondAddress; private String password;}// 모든 필드를 한번에 초기화한 객체SignupRequestDto dto = new SignupRequestDto("레이지캣", LocalDate.of(1990, 1, ..