在基于 JHipster UAA 的微服务应用程序中获取当前访问令牌

Posted

技术标签:

【中文标题】在基于 JHipster UAA 的微服务应用程序中获取当前访问令牌【英文标题】:Fetch Current Access Token in JHipster UAA based Microservice Applications 【发布时间】:2021-09-11 14:07:55 【问题描述】:

我有一个具有基于 UAA 的身份验证 (OAuth 2.0) 的 JHipster 微服务。我已经通过IatTokenEnhancer 在令牌中设置了某些声明。我想在每个请求中使用这些声明的值。 How can I fetch the access token from current request?

【问题讨论】:

【参考方案1】:

令牌可通过SecurityContext 访问。以下是代码:

public static Optional<String> getCurrentUserToken() 
    SecurityContext securityContext = SecurityContextHolder.getContext();
    return Optional.ofNullable(securityContext.getAuthentication())
        .filter(authentication -> authentication.getDetails() instanceof OAuth2AuthenticationDetails)
        .map(authentication -> ((OAuth2AuthenticationDetails) authentication.getDetails()).getTokenValue());

【讨论】:

以上是关于在基于 JHipster UAA 的微服务应用程序中获取当前访问令牌的主要内容,如果未能解决你的问题,请参考以下文章

JHipster生成微服务架构的应用 - 准备工作

UAA原理分析

jhipster 3 从单体迁移到微服务

JHipster - 网关如何在微服务中进行身份验证?

JHipster:测试微服务时收到 401 Unauthorized

jhipster技术栈研究