일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
Tags
- 다익스트라
- 데이터 flow
- DP
- 파이썬
- pandas
- 알고리즘
- equals
- 문자열
- 비트마스크
- 세그먼트 트리
- 이펙티브 자바
- ddd
- 헥사고날 아키텍처
- dataframe
- java
- 자바
- Redis
- disjoint set
- 백준
- 스프링
- spring security
- springboot
- 위상정렬
- UML
- JPA
- series
- 포트앤어댑터 아키텍처
- docker
- BFS
- dfs
Archives
- Today
- Total
목록@AuthenticationPrincipal (1)
코딩못하는사람
@AuthenticationPrincipal 어노테이션
스프링 시큐리티를 활용하여 인증,인가를 처리할 때 @AuthenticationPrincipal를 쓰면 쉽게 UserDetails를 구현하여 만든 Principal 인스턴스를 얻을 수 있었다. 쉽게 사용했지만 어떻게 동작하는지 궁금해져 찾아 보았다. Spring Security에서 AuthenticationFilter를 거쳐 인증을 완료하게 되면 Authentication 인터페이스를 구현한 UsernamePasswordAuthenticationToken을 SecurityContextHolder에 설정하게 된다. @AuthenticationPrincipal는 스프링 시큐리티의 AuthenticationPrincipalArgumentResolver 클래스를 활용하여 SecurityContextHolder에 ..
스프링(Spring)/개념
2022. 1. 2. 05:16