删除Spring Boot上的“使用默认安全密码”
2022-08-31 10:49:02
我在Spring Boot上的应用程序中添加了一个自定义安全配置,但是有关“使用默认安全密码”的消息仍然存在于日志文件中。
有什么可以删除它吗?我不需要此默认密码。似乎Spring Boot没有识别我的安全策略。
@Configuration
@EnableWebSecurity
public class CustomSecurityConfig extends WebSecurityConfigurerAdapter {
private final String uri = "/custom/*";
@Override
public void configure(final HttpSecurity http) throws Exception {
http.csrf().disable();
http.headers().httpStrictTransportSecurity().disable();
http.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS);
// Authorize sub-folders permissions
http.antMatcher(uri).authorizeRequests().anyRequest().permitAll();
}
}