authenticationManager 관련 질문입니다.
구글링을 통해 해결했습니다! 혹시 다른분들도 Spring Security 6.x 로 하고싶은분이 있으실태니까 글 남겨놓겠습니다! AuthenticationManagerBuilder sharedObject = http.getSharedObject(AuthenticationManagerBuilder.class); sharedObject.userDetailsService(this.userDetailsService); AuthenticationManager authenticationManager = sharedObject.build(); http.authenticationManager(authenticationManager);authenticationManager 생성부분을 위와같이 교채해 주시면 됩니다!