Skip to content

8주차 미션 [이서]#30

Open
seoyoon127 wants to merge 14 commits into
mainfrom
leeseo/week8
Open

8주차 미션 [이서]#30
seoyoon127 wants to merge 14 commits into
mainfrom
leeseo/week8

Conversation

@seoyoon127
Copy link
Copy Markdown
Collaborator

@seoyoon127 seoyoon127 commented May 15, 2026

🚩 관련 이슈

📌 구현 결과

  • Spring Security를 적용하고 회원가입 API를 구현
스크린샷 2026-05-15 204105
  • 비밀번호 BCrypt로 솔트처리
스크린샷 2026-05-15 204143
  • exceptionHandling 구현
스크린샷 2026-05-15 205545

❓ 리뷰 요청

🤔 질문

💬 기타 공유 사항

@seoyoon127 seoyoon127 self-assigned this May 15, 2026
Copy link
Copy Markdown
Member

@yangjiae12 yangjiae12 left a comment

Choose a reason for hiding this comment

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

수고하셨습니다~

private final MemberRepository memberRepository;

@Transactional
public AuthResDto.Id signUp(AuthReqDto.Signup dto) {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

회원가입 시에 이메일 중복 검사를 추가하면 좋을 것 같습니다~

Comment on lines +45 to +46
memberRepository.save(member);
member.updateFoodList(list);
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

현재는 memberRepository.save(member) 이후 member.updateFoodList(list)를 호출하고 있는데, 음식 카테고리도 회원가입 과정에서 함께 생성되는 연관 정보이므로 먼저 연관관계를 세팅한 뒤 저장하는 흐름이 더 자연스러울 것 같습니다!

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.

[Mission] 8주차 미션

2 participants