Configure security for Spring Boot 2.0 acuator framework(为Spring Boot 2.0仿真器框架配置安全性)
问题描述
我想在我的Spring Boot 2.0应用程序中使用Spring Actuator框架。框架本身按照预期工作,因此我能够到达例如我的/actuator/health
终结点。在那里,我呈现了一个登录对话框。我想摆脱它,并尝试了以下方法:
@Configuration
@EnableWebFluxSecurity
public class SecurityConfiguration {
@Bean
public SecurityWebFilterChain securityWebFilterChain(ServerHttpSecurity http) {
return http
.authorizeExchange()
.matchers(EndpointRequest.to("prometheus")).permitAll()
.matchers(EndpointRequest.toAnyEndpoint()).authenticated()
.anyExchange().permitAll()
.and()
.formLogin()
.and()
.httpBasic()
.and()
.build();
}
但是,在应用程序启动期间,我收到以下错误:
未能实例化[org.springframework.security.web.server.SecurityWebFilterChain]:工厂方法‘securityWebFilterChain’引发异常;嵌套异常为java.lang.IlLegalArgumentException:身份验证管理器不能为空
当然,我试图搜索它,但我总是只能得到描述使用Spring Boot 1.x框架的不同场景或安全配置的页面。有人能帮我一下吗?
推荐答案
最简单的方法应该是让SecurityConfiguration
扩展WebSecurityConfigurerAdapter
并覆盖configure(WebSecurity web)
,如下所示:
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
@Override
public void configure(WebSecurity web) throws Exception {
web.ignoring()
.antMatchers("/actuator/**");
}
// ...
}
另外,我不熟悉@EnableWebFluxSecurity
,但要使上面的内容正常工作,您需要同时使用@Configuration
和@EnableWebSecurity
注释。
SecurityWebFilterChain
。
这篇关于为Spring Boot 2.0仿真器框架配置安全性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为Spring Boot 2.0仿真器框架配置安全性
- 获取数字的最后一位 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 转换 ldap 日期 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01