We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#21 에서 생성한 SessionArgumentResolver를 ArgumentResolvers에 등록합니다.
#21 에서 구현한 SessionCustomerArgumentResolver 와 SessionVendorArgumentResolver가 현재 등록되지 않아서 SessionAttribute를 @AuthenticationPrincipal 로 받아올 수 없습니다.
SessionCustomerArgumentResolver
SessionVendorArgumentResolver
@AuthenticationPrincipal
#3 에서 세션을 처리하는 테스트를 진행하기 위해서는 argumentResolver가 등록되어야합니다.
따라서 WebMvcConfig파일을 생성하여 생성한 argumentResolver를 등록할 것 입니다.
@AuthenticationPrincipal를 이용해서 Controller에서 쉽게 Session에 저장된 인증 객체를 받아올 수 있다.
The text was updated successfully, but these errors were encountered:
#3 의 281f6b2 커밋에서 해결했습니다!
Sorry, something went wrong.
Hyeon-Uk
Successfully merging a pull request may close this issue.
기능
#21 에서 생성한 SessionArgumentResolver를 ArgumentResolvers에 등록합니다.
설명
#21 에서 구현한
SessionCustomerArgumentResolver
와SessionVendorArgumentResolver
가 현재 등록되지 않아서 SessionAttribute를@AuthenticationPrincipal
로 받아올 수 없습니다.#3 에서 세션을 처리하는 테스트를 진행하기 위해서는 argumentResolver가 등록되어야합니다.
따라서 WebMvcConfig파일을 생성하여 생성한 argumentResolver를 등록할 것 입니다.
기대 효과
@AuthenticationPrincipal
를 이용해서 Controller에서 쉽게 Session에 저장된 인증 객체를 받아올 수 있다.The text was updated successfully, but these errors were encountered: