【发布时间】:2019-07-12 22:35:11
【问题描述】:
我已经设置了自己的ReactiveAuthenticationManager
public class CustomReactiveAuthenticationManager implements ReactiveAuthenticationManager
然后在 SecurityWebFilterChain 中:
.authenticationManager(this.authenticationManager)
但是在此设置之后,我在执行器 auditevents 端点中没有得到任何东西:
{"events":[]}
即使我使用自定义 ReactiveAuthenticationManager,我还需要更改哪些内容才能获得审核事件?
【问题讨论】:
标签: spring-boot spring-security spring-webflux spring-boot-actuator