-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feat] : 회원 엔티티와 회원가입 api 구현 절반 / 패키지 구조 변경 #20
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생 많으셨습니다! 궁금한 점 리뷰로 남겼어요~
@Pattern(regexp = "^[0-9a-zA-Z]([-_.]?[0-9a-zA-Z]){0,19}" | ||
+ "@[0-9a-zA-Z]([-_.]?[0-9a-zA-Z]){0,19}+[.][a-zA-Z]{2,3}$", | ||
message = "이메일 주소 양식을 확인해주세요") | ||
String email, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Pattern
은 entity 내에서 Assert가 안되는건지 궁금합니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아 가능한데 빠트렸네요! 뒤에 PR 에서 첨가할게요~
|
||
public static String getNotEmptyMessage(String object, String variable) { | ||
return object + "_" + variable + NOT_EMPTY_POSTFIX; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
기존에 있던 파일 같은데, 패키지 구조 변경하면서 추가됐다고 나오는 걸까요??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getNotEmpty�PostFix -> getNotEmptyMessage
제 기억이 맞다면 이렇게 변경했습니다!
메서드명이 너무 어색하더라구요
📑 작업 상세 내용
회원가입 API
관련한 서비스 메서드와, 밸리데이션, 엔티티를 보완하여 추가했습니다.레이어 -> 도메인
도메인 -> 레이어
💫 작업 요약
🔍 중점적으로 리뷰 할 부분