일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 톰캣 실시간 로그
- katalon xpath
- 피보나치 예제
- javascript 자동완성
- katalon 자동화
- 재귀 예제
- katalon
- 피보나치함수 예제
- recursion example
- tomcat log
- katalon 비교
- 해외증권 양도세 한국투자증권
- CSTS 폭포수 모델
- bfs 미로탐색 java
- oracle group by
- 한국투자증권 양도세 신고
- 국세청 해외주식 양도세 신고방식
- 재귀함수 예제
- 주식 양도세 신고방법
- 한국투자증권 해외주식 양도세
- 테스트 자동화
- 홈택스 해외주식 양도세
- Katalon Recorder 사용법
- js 자동완성
- java.sql.SQLSyntaxErrorException
- 최대공약수 예제
- git 연동
- katalon 사용법
- 해외주식 양도세 신고
- 피보나치함수
- Today
- Total
엄지월드
Spring security AWT 본문
formLogin().disable() 처리를 해주었기 때문에
PrincipalDetailsService implements UserDetailsService를 때려주는 Filter를 만들어야 한다.
.formLogin().disable() 처리를 해주었기 때문에 UsernamePasswordAuthenticationFilter가 실행될 수 있도록
configure(HttpSecurity http)에서 filter를 등록해주어야 한다.
.addFilter(new JwtAuthenticationFilter(authenticationManager()))
그리고 authenticationManager()를 추가하기 위해서 JwtAuthenticationFilter에서 생성자를 추가해준다.
@RequiredArgsConstructor
public class JwtAuthenticationFilter extends UsernamePasswordAuthenticationFilter {
private final AuthenticationManager authenticationManager;
}
그 후에 로그인을 시도를 위해 실행되는 함수를 추가해준다.
authenticationManager로 로그인 시도를 하면, PrincipalDetailsService가 호출되어 loadUserByUsername() 함수가 실행된다.
3. principalDetails를 세션에 담고
4. JWT 토큰을 만들어서 응답해주면 됨.
// PrincipalDetailsService의 loadUserByUsername() 함수가 실행된 후 정상이면 authentication이 리턴됨.
Authentication authentication = authenticationManager.authenticate(authenticationToken);
authentication 객체가 session 영역에 저장됨 => 로그인이 되었다는 뜻
PrincipalDetails principal = (PrincipalDetails) authentication.getPrincipal();
log.info("principal > {}", principal);
attemptAuthentication이 종료되면 아래 함수가 실행됨.
즉, JWT 토큰을 만들어서 request 요청한 사용자에게 JWT 토큰을 response 해주면 됨.
@Override
protected void successfulAuthentication( HttpServletRequest request, HttpServletResponse response,
FilterChain chain, Authentication authResult ) throws IOException, ServletException {
시큐리티가 filter를 가지고 있는데, 그 필터중에 BasicAuthenticationFilter 라는 것이 있음.
권한이나 인증이 필요한 특정 주소를 요청했을 때 위 필터를 무조건 타게 되어있음.
만약에 권한이나 인증이 필요한 주소가 아니라면, 이 필터를 타지 않음
public class JwtAuthorizationFilter extends BasicAuthenticationFilter
'java > Spring' 카테고리의 다른 글
arr stream return 값 만들기 (0) | 2023.07.17 |
---|---|
lombok error: cannot find symbol, @RestController return {} (0) | 2023.07.16 |
SpringBoot interceptor 설정 (0) | 2023.01.28 |
signwith javax.xml.bind.DatatypeConverter (0) | 2023.01.28 |
SpringBoot Controller 통합테스트 (0) | 2023.01.28 |