일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 1992번
- 2163번
- 파이썬
- 2630번
- python
- 1793번
- 프로그래머스
- 11047번
- programmers
- caniuse
- WebSecurityConfigurerAdapter
- 분할정복
- 11727번
- SecurityFilterChain
- EBS어학당
- 권주현의 진짜 영국 영어
- Spring Security
- 신규아이디추천
- 영어
- codility
- 1057번
- 백준
- BinaryGap
- 알고리즘
- github
- 9251번
- 1759번
- 입이 트이는 영어
- Java
- 18406번
Archives
- Today
- Total
철갑이의 이모저모
[spring] 스프링 시큐리티(Spring Security) - WebSecurityConfigurerAdapter is deprecated 해결 방법 본문
spring
[spring] 스프링 시큐리티(Spring Security) - WebSecurityConfigurerAdapter is deprecated 해결 방법
철갑 2022. 9. 12. 15:37728x90
▶The type WebSecurityConfigurerAdapter is deprecated
Spring Security 설정 도중 아래와 같이 WebSecurityConfigurerAdapter가 deprecated 된 것을 확인할 수 있었습니다.
▶ 어떻게 바뀌었을까?
공식문서를 확인해보니 기존에는 WebSecurityConfigurerAdapter를 상속받아 설정을 overriding 했다면 지금은 SecurityFilterChain를 Bean으로 등록해서 사용하라고 나와있습니다.
공식문서에서 권장하는 방식으로 코드를 변경해보았습니다.
▶ 적용 방법
- 변경전 (WebSecurityConfigurerAdapter 상속)
@Configuration
@EnableWebSecurity
public class SecurityStudy extends WebSecurityConfigurerAdapter{
@Override
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable();
http.authorizeRequests()
.antMatchers("/user/**").authenticated()
.antMatchers("/manager/**").access("hasRole('ROLE_ADMIN') or hasRole('ROLE_MANAGER')")
.antMatchers("/admin/**").access("hasRole('ROLE_ADMIN')")
.anyRequest().permitAll()
.and()
.formLogin()
.loginPage("/login");
}
}
- 변경후(SecurityFilterChain를 Bean으로 등록)
@Configuration
@EnableWebSecurity
public class SecurityConfig{
@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http.csrf().disable();
http.authorizeRequests()
.antMatchers("/user/**").authenticated()
.antMatchers("/manager/**").access("hasRole('ROLE_ADMIN') or hasRole('ROLE_MANAGER')")
.antMatchers("/admin/**").access("hasRole('ROLE_ADMIN')")
.anyRequest().permitAll()
.and()
.formLogin()
.loginPage("/login");
return http.build();
}
}
▶참고
728x90
'spring' 카테고리의 다른 글
[spring] 스프링 시큐리티(Spring Security) - 개념 및 동작 구조 (0) | 2022.08.03 |
---|