Skip to content

Commit

Permalink
Spring Security를 이용한 사용자 인증 및 조회
Browse files Browse the repository at this point in the history
memberController + memberService, SecurityConfig 등 수정
  • Loading branch information
jmsb02 committed Oct 31, 2024
1 parent 6ca2199 commit e083158
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.dorandoran.backend.Member.Controller;

import com.dorandoran.backend.Member.domain.Member;
import com.dorandoran.backend.Member.domain.MemberRepository;
import com.dorandoran.backend.Member.domain.MemberService;
import com.dorandoran.backend.Member.domain.SimpleUserDetails;
Expand All @@ -13,7 +12,6 @@
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.security.authentication.AuthenticationManager;
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@NoArgsConstructor
Expand Down

0 comments on commit e083158

Please sign in to comment.