WebSecurityConfigurerAdapter 가 없는 InMemory 유저 추가
기존에 공부했던 시큐리티 형식이 변경되면서 많은 혼란이 오고 있네요. 특히 저같이 수박 걷핧기 하듯이 공부를 했던 사람들은 더 힘들 것 같습니다. 기본이 중요하다는 사실을 다시한번 알게 됩니다. Spring Security 5.7.0-M2 이후부터는 더이상 WebSecurityConfigurerAdapter 를 extends 해서 쓰지 않게 되면서 Configure 메서드를 오버라이딩 해서 사용했던 InMemory 방식의 유저추가는 다른 형태로 사용할 수 있습니다. //이렇게 사용했었습니다. @Ovrride protected void configure(AuthenticationManagerBuilder auth) throws Exception { String password = passwordEncode..
Study/Java
2022. 9. 29. 23:45