我尝试使用Spring-Boot设置OAuth2资源服务器。到目前为止,这一切都正常,但仍然是使用默认安全密码:日志记录显示我想要摆脱。这就是我的配置:
@Configuration
@EnableResourceServer
public class OAuthConfiguration extends ResourceServerConfigurerAdapter {
@Override
public void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().anyRequest().authenticated();
super.configure(http);
}
}
我已经尝试在SecurityAutoConfiguration之前和之后添加@EnableWebSecurity
,@EnableGlobalMethodSecurity
并强制它,但似乎没有任何帮助。我也在网上发现了一些帖子。建议的配置security.basic.enabled = false对我没用。
有谁知道这是如何正确完成的?