jeesun/oauthserver

认证器配置有点问题

511098425 opened this issue · 1 comments

在WebSecurityConfig.java这个地方实际上只需要一个就可以了,这边配置一个provider和下面jdbcAuthenticcation()两个会不会存在重复?

@OverRide
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.authenticationProvider(authProvider);
auth.jdbcAuthentication().dataSource(dataSource).passwordEncoder(new BCryptPasswordEncoder(11));
}

第一个会调用自定义的认证,如果第一个认证失败会调用默认提供的认证,应该是这样的把