JAVA-17164 update config and discovery services to use Spring Boot 2.7.X (#13967)

This commit is contained in:
Kasra Madadipouya
2023-05-31 13:40:49 +02:00
committed by GitHub
parent ff30f4648f
commit 920214f38d
40 changed files with 329 additions and 485 deletions
@@ -17,7 +17,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth.inMemoryAuthentication().withUser("discUser").password("discPassword").roles("SYSTEM");
auth.inMemoryAuthentication().withUser("discUser").password("{noop}discPassword").roles("SYSTEM");
}
@Override