티스토리 뷰
프로그래밍/Spring
[Spring Security] 현재 로그인한 사용자 정보 @AuthenticationPrincipal 으로 가져오기
goodmean 2022. 7. 1. 00:06@Controller
public class SecurityController {
@GetMapping("/messages/inbox")
public ModelAndView currentUserName(@AuthenticationPrincipal CustomUser customUser) {
String username = customUser.getUsername();
// .. find messages for this user and return them ...
}
}
'프로그래밍 > Spring' 카테고리의 다른 글
타임리프 주요 문법 (0) | 2022.06.25 |
---|---|
Spring 과 Spring Boot 의 차이 (0) | 2022.06.24 |
Spring Boot Validation 주요 기능 (0) | 2022.06.22 |
Get 과 Post 의 차이 (0) | 2022.06.21 |
리포지터리(Repository)란? (0) | 2022.06.20 |