Skip to content
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

Seonyo #10

Merged
merged 19 commits into from
May 11, 2024
Merged

Seonyo #10

merged 19 commits into from
May 11, 2024

Conversation

seonyo
Copy link
Member

@seonyo seonyo commented May 11, 2024

No description provided.

@seonyo seonyo merged commit ae9e786 into main May 11, 2024
private String password;

@Column(unique = true)
private String email;
Copy link
Member

@mic050r mic050r May 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. 단순 데이터를 1차적으로 검증하기 위해 Validation을 통해 유효성 검사를 하면 좋을 것 같습니다!

예를 들어, 아래와 같은 형식으로욤!

@NotBlank(message="이름을 입력해주세요.")
@Size(max=64, message="이름의 최대 길이는 64자 입니다.")
private String name;
@Min(0, "나이는 0보다 커야 합니다.")
private int age;
@Email("이메일 형식이 잘못되었습니다.")
private int email;

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

넵 확인했습니다. 좋은 의견 감사합니다.

@seonyo seonyo requested review from mic050r and removed request for mic050r May 11, 2024 16:13
@mic050r mic050r self-requested a review May 11, 2024 16:14
@mic050r mic050r linked an issue May 11, 2024 that may be closed by this pull request
5 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

회원가입 기능 구현
2 participants