yeeuniii / study-spring-security

spring-security 공부
0 stars 0 forks source link

spring security 도입 #1

Open yeeuniii opened 1 month ago

yeeuniii commented 1 month ago

작업 요약

spring security 도입

작업 세부 사항

yeeuniii commented 1 month ago

시작하기 전에 버전 차이로 인한 이슈 알아두기

  • spring security 5.7이상부터 WebSecurityConfigurerAdapter 지원 중단
https://this-circle-jeong.tistory.com/162
yeeuniii commented 1 month ago

Jwt 인증 필터

질문

yeeuniii commented 1 month ago

WebSecurityConfig

@Configuration
@EnableWebSecurity
@RequiredArgsConstructor
public class WebSecurityConfig {
    @Bean
    public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
        return http.build();
    }
}
yeeuniii commented 1 month ago

AuthenticationEntryPoint

인증 예외를 처리하는 클래스

AuthenticationEntryPoint 이해

yeeuniii commented 1 month ago

서타몽 유튜브 [Spring boot 3 - Mail, OAuth2.0] 보면서 학습함.

yeeuniii commented 1 month ago

OAuth 공부하다가 좌절됨 ㅎㅎ 다음 기회에 더 공부하는거로~~