Spring boot Security 객체 참조
2024. 8. 13. 17:38ㆍJava/Spring Boot Security
Object principal = SecurityContextHolder.getContext().getAuthentication().getPrincipal();
UserDetails userDetails = (UserDetails)principal;
log.debug(userDetails.getUsername());
'Java > Spring Boot Security' 카테고리의 다른 글
Spring boot Security 에러 메세지 처리 (0) | 2024.08.15 |
---|---|
Spring boot Security Authentication 데이터 내용 (0) | 2024.08.15 |
Spring boot Security blocked:mixed-content 에러 (0) | 2024.08.11 |
Spring boot Security 302 에러 (0) | 2024.08.11 |
Spring boot Security와 sencha 연동시 고려사항 (0) | 2024.08.03 |