@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.authenticationProvider(customAuthenticationProvider)
.userDetailsService(customUserDetailsService());
}
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.authenticationProvider(customAuthenticationProvider)
.userDetailsService(customUserDetailsService());
}
이런식으로 authenticationProvider 직접 커스텀해서 넣었거든?
시큐리티 필터가 여러개있잖아 근데
디버깅모드로 어디박혀있나 보니깐 BasicAuthenticaiton Filter이라는 기본세팅된 필터에서
호출되더라고 필터 지정도 안했는데 어떤원리로
어느필터에 들어가는거지 알수있을까?
댓글 0