CustomAuthenticationProvider

CustomAuthenticationProvider

如何通过将Spring Security与Java配置结合使用来定义自定义身份验证提供程序?
我想在我自己的数据库上执行登录检查凭据。

最佳答案

以下内容可以满足您的需要(CustomAuthenticationProvider是您的实现,需要由Spring管理)

@Configuration
@EnableWebMvcSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

    @Autowired
    private CustomAuthenticationProvider customAuthenticationProvider;

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        /**
         * Do your stuff here
         */
    }

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.authenticationProvider(customAuthenticationProvider);
    }
}

07-24 18:30