본문 바로가기
IT/Spring

2021-05-24-SpringBoot-Authentication-null

by 봉즙 2023. 2. 28.

layout : post
title : "SpringBoot2.4 Migration시 authentication null"

category : Spring

Spring boot 2.4.0에서

@AuthenticationPrincipal 을 사용하는 경우 authentication의 값이 null이 나온다.

public class Test {
    @GetMapping("/test")
    public TestDto test(@AuthenticationPrincipal Authentication authentication) {
        System.out.println(authentication);
    }
}

@AuthenticationPrincipal annotation을 제거하면 정상적으로 작동한다.

'IT > Spring' 카테고리의 다른 글

2021-06-08-외부라이브러리Bean등록  (0) 2023.02.28
2021-06-04-Controller-interface  (0) 2023.02.28
2021-05-13-Message-properties-특수문자  (0) 2023.02.28
2021-05-03-JPA-Valid-Message  (0) 2023.02.28
2021-04-21-JPA-Projection  (0) 2023.02.28

댓글