Spring Boot OAuth2管理HTTP基本认证

Spring Boot OAuth2管理HTTP基本认证,第1张

Spring Boot OAuth2管理HTTP基本认证

好的,使用下面的java配置使其工作。

任何人都可以访问端点/ admin / actuators / health,并且所有其他/ admin / actuators /
*端点均已通过身份验证。

@Configuration@Order(1)protected static class ApiWebSecurityConfigurationAdapter extends WebSecurityConfigurerAdapter {    protected void configure(HttpSecurity http) throws Exception {        http     .authorizeRequests()     .antMatchers(HttpMethod.GET, "/admin/actuators/health").permitAll() .and()     .antMatcher("/admin/actuators/**")     .authorizeRequests()     .anyRequest()     .hasRole("ADMIN")     .and()     .httpBasic();    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4899035.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存