我在 Spring Boot 上的应用程序中添加了一个自定义 Security Config,但是有关“使用默认安全密码”的消息仍然存在于日志文件中。
有什么可以移除的吗?我不需要这个默认密码。似乎 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();
}
}