November 2017
Intermediate to advanced
542 pages
14h 24m
English
This can be done by updating the Spring Security configuration. Remove the old ShaPasswordEncoder encoder and add the new StandardPasswordEncoder encoder, as follows:
//src/main/java/com/packtpub/springsecurity/configuration/SecurityConfig.java @Bean public PasswordEncoder passwordEncoder(){ return new StandardPasswordEncoder(); }
Read now
Unlock full access