Open
Conversation
gkdmsgus
reviewed
Apr 9, 2026
| .sessionManagement(session -> session | ||
| .maximumSessions(1) | ||
| .maxSessionsPreventsLogin(false) | ||
| );;; |
Collaborator
There was a problem hiding this comment.
세미콜론 3개 오타입니다 ;;; → ; 하나로 수정 부탁드립니다
| import java.util.Optional; | ||
|
|
||
| @Repository | ||
| public interface MemberRepository extends JpaRepository<Member, Long> { |
Collaborator
There was a problem hiding this comment.
단건 조회인데 findAllByMemberName은 어색합니다. findByMemberName으로 변경 부탁드립니다
gkdmsgus
approved these changes
Apr 9, 2026
Collaborator
gkdmsgus
left a comment
There was a problem hiding this comment.
LGTM, 세미콜론 오타랑 findAll 네이밍만 수정 부탁드립니다
lyh030526
approved these changes
Apr 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
관련 이슈
Closes #3
작업 내용
회원가입
Member엔티티 생성BaseEntity상속으로createdAt,updatedAt,deletedAt자동 관리RoleEnum 분리 (USER,ADMIN)Member.create()팩토리 메서드로 생성 시 기본Role.USER부여로그인
MemberDetailService-UserDetailsService구현체AuthenticationManager로 인증 처리로그아웃
logoutUrl설정으로 처리logoutSuccessHandler로 200 응답 반환테스트