28 lines
1.2 KiB
Java
28 lines
1.2 KiB
Java
package com.example.oauthspringsecurity.config;
|
|
|
|
import com.example.oauthspringsecurity.service.OAuthService;
|
|
|
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
|
|
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
|
|
|
|
@EnableWebSecurity // spring security 설정을 활성화시켜주는 어노테이션
|
|
public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
|
|
|
private final OAuthService oAuthService;
|
|
|
|
public SecurityConfig(OAuthService oAuthService) {
|
|
this.oAuthService = oAuthService;
|
|
}
|
|
|
|
@Override
|
|
protected void configure(HttpSecurity http) throws Exception {
|
|
http.csrf().disable()
|
|
.headers().frameOptions().disable()
|
|
.and()
|
|
.oauth2Login() // OAuth2 로그인 설정 시작점
|
|
.userInfoEndpoint() // OAuth2 로그인 성공 이후 사용자 정보를 가져올 때 설정 담당
|
|
.userService(oAuthService); // OAuth2 로그인 성공 시, 후작업을 진행할 UserService 인터페이스 구현체 등록
|
|
}
|
|
}
|