Oauth2 身份验证


public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
            clients.inMemory()
           .withClient("javadeveloperzone")
                   .secret("secretcode")
                   .accessTokenValiditySeconds(2000)        // expire time for access token
                   .refreshTokenValiditySeconds(-1)         // expire time for refresh token
           .scopes("read", "write")                         // scope related to resource server
                   .authorizedGrantTypes("password", "refresh_token");      


}

使用此代码,但我想访问从我的数据库中读取的令牌有效性秒,请帮助我,因为我在 Spring Web 服务身份验证中是新的。提前谢谢。

您可以@Autowired服务/dao并请求从数据库中读取值。你的问题是什么?

相关内容

  • 没有找到相关文章

最新更新