无法通过 Spring Boot OAuth2 生成 JWT 令牌

Not able to generate JWT token by Spring Boot OAuth2

我对生成 OAuth JWT 令牌有点陌生。我一直在尝试使用 Spring Boot OAuth 来实现授权服务器。我面临的问题是我无法生成 JWT 令牌,而是生成一个简单的令牌而不是 JWT 令牌。

我在 GitHub 中创建了项目。请参阅 link https://github.com/jainaks2010/OAuth2AuthorizationServer

我正在使用 POSTMan 生成 -

我认为您需要像这样将转换器添加到端点:

    @Override
    public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
        endpoints
            .tokenStore(tokenStore())
            .accessTokenConverter(jwtAccesTokenConvertor()) // <-- This one
            .authenticationManager(authenticationManager)
            .userDetailsService(userDetailsService);
    }