Giriş
Kullanıcı ismi, şifre ve roller verilir. Spring 5 ile passwordEncoder kullanılması mecburi hale geldi.
withUser metodu
Kullanıcı ismi, şifre ve roller verilir. Spring 5 ile passwordEncoder kullanılması mecburi hale geldi.
withUser metodu
Örnek
Şöyle yaparız.
Şöyle yaparız.
@EnableWebSecurity
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
private PasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.inMemoryAuthentication()
.passwordEncoder(passwordEncoder())
.withUser("john.doe")
.password(passwordEncoder().encode("secret"))
.roles("USER");
}
@Bean
public PasswordEncoder passwordEncoder() {
return passwordEncoder;
}
}
Hiç yorum yok:
Yorum Gönder