Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 프로래머스
- re.split
- 백준 19238
- springboot
- JPA
- 백준 파이썬
- Spring Boot
- 백준
- MySQL
- JVM
- Coroutine
- 백준 17626
- sql 기술면접
- java
- 백준 16235
- Spring
- spring cloud
- 프로그래머스
- 백준 17779
- MSA
- java 기술면접
- with recursive
- 파이썬
- spring security
- 백준 16719
- 백준 16236
- 백준 15685
- spring oauth
- 웹어플리케이션 서버
- Kotlin
Archives
- Today
- Total
시작이 반
[Spring] 스프링 시큐리티 Controller에서 세션 찾기 본문
SMALL
Controller에서 세션 찾는법
@GetMapping("/auth/joinForm")
public String joinForm(@AuthenticationPrincipal PrincipalDetail principalDetail){
if(Optional.ofNullable(principalDetail).isPresent()){
return "redirect:/";
}else{
return "user/joinForm";
}
}
@AuthenticationPrincipal 어노테이션으로 찾을수 있다.
LIST
'Programming > Spring' 카테고리의 다른 글
[Spring] 0. OAuth2.0 카카오 과정 (0) | 2021.02.15 |
---|---|
[Spring] Thymeleaf에서 세션 확인 (th에서 authentication사용하기) (0) | 2021.02.14 |
[Spring] 스프링 시큐리티 로그인 (0) | 2021.02.14 |
[Spring] CSRF, XSS (0) | 2021.02.11 |
[Spring] 커맨드 객체, @ModelAttribute (0) | 2021.02.07 |