[Kotlin] 'WebSecurityConfigurerAdapter' is deprecated. Deprecated in Java 해결
Spring Security 5.7.0-M2부터 WebSecurityConfigurerAdapter가 deprecated 됐다. 기존에는 스프링 시큐리티를 사용하면 WebSecurityConfigurerAdapter라는 추상 클래스를 상속하고configure 메서드를 오버라이드하여 설정하는 아래 방식처럼 사용을 했었다. @Configuration@EnableWebSecurityclass WebSecurityConfig( private val tokenProvider: TokenProvider, private val jwtAuthenticationEntryPoint: JwtAuthenticationEntryPoint, private val jwtAccessDeniedHandler: Jwt..
Kotlin & JPA
2024. 5. 10. 11:29