ahnbang / ShoppingMallProject

0 stars 0 forks source link

스프링 시큐리티 관련 문제점 #3

Open ahnbang opened 2 years ago

ahnbang commented 2 years ago

1.WebSecurityConfigurerAdapter가 Deprecated된 문제

: 공식문서 참조해보면 Use a SecurityFilterChain Bean to configure HttpSecurity or a WebSecurityCustomizer Bean to configure WebSecurity -> WebSecurityConfigurerAdapter가 Deprecated 되었으니 SecurityFilterChain를 Bean으로 등록해서 사용할것

변경시 withDefaults인식 안되는 부분 -> import static org.springframework.security.config.Customizer.withDefaults; 으로 해결

  1. 개발과정에서는 정적파일 필터링 제외처리 필요 http부분 .mvcMatchers("/", "/static/**").permitAll()

web부분 .ignoring() .antMatchers("/resources/**"); 정적파일이외에도 일단 필터링 전부 제외