fixed:使用refresh_token Invalid refresh token

This commit is contained in:
wangiegie@gmail.com 2017-12-14 18:15:07 +08:00
parent 3a0e40a4cc
commit 4406cf5b77
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@ public class PigAuthorizationConfig extends AuthorizationServerConfigurerAdapter
.tokenStore(new RedisTokenStore(redisConnectionFactory))
.accessTokenConverter(jwtAccessTokenConverter())
.authenticationManager(authenticationManager)
.reuseRefreshTokens(false)
.userDetailsService(userDetailsService);
}