如何使用 Spring WebFlux 获取“身份验证”对象?

Posted

技术标签:

【中文标题】如何使用 Spring WebFlux 获取“身份验证”对象?【英文标题】:How to get the "Authentication" Object with Spring WebFlux? 【发布时间】:2018-05-10 06:36:00 【问题描述】:

使用 SpringMVC 和 Spring Security,我可以实现一个像这样的控制器(在 Java 中):

@RestController
@RequestMapping("/auth")
class AuthController 
    private final AuthService authService;

    AuthController(AuthService authService) 
        this.authService = authService;
    

    @GetMapping("/roles")
    Collection<String> findRoles(Authentication authentication) 
        final Object principal = authentication.getPrincipal();
        ...;
    

但是,我基本上如何注入org.springframework.security.core.Authentication的对象 在使用 Spring WebFlux 和 Spring Security(包括。 反应部分)?

【问题讨论】:

你不使用@Autowired private final Authentication authentication 吗? 我不明白你的问题。你能试着改写你上面的问题吗? 我的意思是你可以试试。使用@Autowired 注入Authentication 对象。 @AtaurRahmanMunna 如果我尝试自动装配 Authentication 我收到错误 无法自动装配。找不到“身份验证”类型的 bean。 【参考方案1】:

有很多例子: https://github.com/spring-projects/spring-security

这个展示了如何在休息控制器的情况下获得委托人:

https://github.com/spring-projects/spring-security/blob/b6895e6359e404e4ea101b78eb3135612dfe1769/samples/javaconfig/hellowebflux/src/main/java/sample/HelloUserController.java#L35

这个展示了如何在 webflux 的情况下获取 Principal:

https://github.com/spring-projects/spring-security/blob/b6895e6359e404e4ea101b78eb3135612dfe1769/samples/javaconfig/hellowebfluxfn/src/main/java/sample/HelloUserController.java#L37

【讨论】:

以上是关于如何使用 Spring WebFlux 获取“身份验证”对象?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Webflux 在 Spring API 处理程序方法中访问 JWT 声明?

在身份验证 Spring Security + WebFlux 期间抛出和处理自定义异常

Spring Security WebFlux - 带有身份验证的主体

使用 Spring WebFlux 路由器功能时如何获取模型属性?

如何在spring-webflux中获取当前请求的上下文

Spring Webflux WebClient:它是不是支持基于摘要的身份验证?