인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

katd6's profile image
katd6

asked

Spring Boot Security & JWT Lecture

Spring Boot Security 5 - Security Authorization Processing

강의너무좋습니다! 유료로 변경해도 괜찮은 퀄리티입니다

Written on

·

354

0

강의 너무 잘듣고있습니다 이걸무료로들어도 되나싶을정도로 분량도 많고 잘설명해주셔서 좋습니다!

 

궁금한점이 몇개있는데

- 실무에서 oauth와 같은 소셜 로그인 기능없이 순수 로그인 기능을 구현한다고 했을때에도,  spring interceptor 나 java.io.Filter 로만 구현하는지 아니면 spring security framework를 사용하는지 궁금합니다

- spring security에서 oauth 인증서버를 더 이상 지원하지 않는다고 공식홈페이지에 적혀있던데 제가 제대로 본게 맞는지 궁금하기도 하고, 만약 지원하지 않는다면 oauth 인증서버를 구현할 대체할 library를 사용해야하는지 궁금합니다

The Spring Security OAuth project is deprecated. The latest OAuth 2.0 support is provided by Spring Security. See the OAuth 2.0 Migration Guide for further details.(https://spring.io/projects/spring-security-oauth) 

 

 

Spring Securityspringjwt

Answer 1

3

metacoding님의 프로필 이미지
metacoding
Instructor

- 실무에서 oauth와 같은 소셜 로그인 기능없이 순수 로그인 기능을 구현한다고 했을때에도,  spring interceptor 나 java.io.Filter 로만 구현하는지 아니면 spring security framework를 사용하는지 궁금합니다

 

답변 : 그래도 시큐리티로 구현하는게 훨씬 편해요.

 

- spring security에서 oauth 인증서버를 더 이상 지원하지 않는다고 공식홈페이지에 적혀있던데 제가 제대로 본게 맞는지 궁금하기도 하고, 만약 지원하지 않는다면 oauth 인증서버를 구현할 대체할 library를 사용해야하는지 궁금합니다

 

답변 : OAuth2.0 지원안하는게 순리적으로 맞다고 봐요. 왜냐하면 요새는 리엑트 같이 프론트 단에서 OAuth 처리를 하거든요. 그래서 그 처리된 결과만 서버에서 받기 때문입니다.

katd6님의 프로필 이미지
katd6
Questioner

감사합니다!

katd6's profile image
katd6

asked

Ask a question