19 Şubat 2020 Çarşamba

SpringSecurity AuthenticationManagerBuilder Sınıfı ve Çoklu Doğrulama

Giriş
AuthenticationManagerBuilder ile birden fazla AuthenticationProvider kullanılabilir. Benim denemelerimde inMemoryAuthentication hep en sonda olunca çalışıyordu. Sebebini bilmiyorum

Örnek
Şöyle yaparız.
public void configure(AuthenticationManagerBuilder auth) throws Exception
{
  auth.inMemoryAuthentication()...

  auth.jdbcAuthentication()...;
}

Hiç yorum yok:

Yorum Gönder