IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Spring Security Oauth2 token 续期 -> 正文阅读

[Java知识库]Spring Security Oauth2 token 续期

本文参考以下文章。该文章作者有很多优秀文章,需要的小伙伴可以去看看。

Spring Security系列(27)- Spring Security Oauth2之令牌过期和续签问题解决方案(1)_云烟成雨TD的博客-CSDN博客_怎么解决令牌已经过期Spring Security Oauth2 令牌机制Spring Security Oauth2利用令牌机制来实现认证授权及单点登录,获取到令牌后,携带令牌访问资源服务器,资源服务器针对每次访问,都会用令牌去查询认证信息,然后设置到线程SecurityContextHolder中,后续操作都会获取到用户信息,简单流程入下图所示:令牌过期问题问题在之前,我们分析过,申请到的令牌都是具有过期时间的,在返回的令牌是有字段显示其多久后会过期,单位为秒而这个过期时间,默认是无法修改的,如果用户一直在操https://yunyanchengyu.blog.csdn.net/article/details/121349989本文在上文的基础上做了修改。原文中是自己定义了一个 ResourceServerTokenServices 接口的实现类,而我在实践中发现需要的是一个 AuthorizationServerTokenServices 接口的实现类,可能是版本不同导致的,这点我没有去求证。方便起见,我定义了一个 DefaultTokenServices 的子类,因为 DefaultTokenServices 同时实现了上面提到的两个接口,所以都可以使用。以下是子类的代码:

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.security.core.AuthenticationException;
import org.springframework.security.oauth2.common.DefaultOAuth2AccessToken;
import org.springframework.security.oauth2.common.exceptions.InvalidTokenException;
import org.springframework.security.oauth2.provider.ClientDetails;
import org.springframework.security.oauth2.provider.ClientDetailsService;
import org.springframework.security.oauth2.provider.ClientRegistrationException;
import org.springframework.security.oauth2.provider.OAuth2Authentication;
import org.springframework.security.oauth2.provider.token.DefaultTokenServices;
import org.springframework.security.oauth2.provider.token.TokenStore;
import org.springframework.stereotype.Component;

import java.util.Date;

/**
 * 实现用户有操作时 token 自动续期
 */
@Component
@ConditionalOnProperty(prefix = "token.auto-renew", name = "enabled", havingValue = "true")
public class CustomResourceServerTokenServices extends DefaultTokenServices {
    private TokenStore tokenStore;

    private ClientDetailsService clientDetailsService;

    @Value("${token.auto-renew.interval}")
    private int interval;

    public CustomResourceServerTokenServices(TokenStore tokenStore) {
        super.setTokenStore(tokenStore);
        this.tokenStore = tokenStore;
    }

    @Override
    public void setClientDetailsService(ClientDetailsService clientDetailsService) {
        super.setClientDetailsService(clientDetailsService);
        this.clientDetailsService = clientDetailsService;
    }

    @Override
    public OAuth2Authentication loadAuthentication(String accessTokenValue) throws AuthenticationException, InvalidTokenException {
        DefaultOAuth2AccessToken accessToken = (DefaultOAuth2AccessToken) tokenStore.readAccessToken(accessTokenValue);
        if (accessToken == null) {
            throw new InvalidTokenException("Invalid access token: " + accessTokenValue);
        } else if (accessToken.isExpired()) {
            tokenStore.removeAccessToken(accessToken);
            throw new InvalidTokenException("Access token expired: " + accessTokenValue);
        }

        OAuth2Authentication result = tokenStore.readAuthentication(accessToken);
        if (result == null) {
            // in case of race condition
            throw new InvalidTokenException("Invalid access token: " + accessTokenValue);
        }
        if (clientDetailsService != null) {
            String clientId = result.getOAuth2Request().getClientId();
            try {
                ClientDetails clientDetails = clientDetailsService.loadClientByClientId(clientId);
                Date nowTokenExpiration = accessToken.getExpiration();
                Date now = new Date();
                // 如果过期时间少于5分钟,则重新设置令牌对象的过期时间,并存储
                if ((nowTokenExpiration.getTime() - now.getTime()) < (interval * 1000L)) {
                    // 刷新过期时间
                    Date expiration = new Date(System.currentTimeMillis() + clientDetails.getAccessTokenValiditySeconds() * 1000L);
                    accessToken.setExpiration(expiration);
                    // 设置新的令牌 会自动再根据令牌对象过期时间设置 redis过期
                    tokenStore.storeAccessToken(accessToken, result);
                }
            } catch (ClientRegistrationException e) {
                throw new InvalidTokenException("Client not valid: " + clientId, e);
            }
        }
        return result;
    }
}

有几点需要说明:

  1. 基于配置文件决定是否启用此功能,只在开启的时候向容器注入该 Bean
  2. DefaultTokenServices 实现了 InitializingBean 接口,在 afterPropertiesSet 方法中判 tokenStore 是否为空,所以需要在子类的构造方法中配置父类的 tokenStore

  3. 同样的,clientDetailsService 也需要配置父类,但没必要在构造时配置

  4. loadAuthentication 方法的逻辑在原方法的逻辑上添加了 token 续期的逻辑

既然基于配置文件决定是否启用此功能,那么 Configurer 也需要做一些改动:

public class Configurer extends AuthorizationServerConfigurerAdapter {
    @Autowired
    private DefaultTokenServices tokenServices;

    @Bean
    @ConditionalOnMissingBean(DefaultTokenServices.class)
    public DefaultTokenServices defaultTokenServices() {
        DefaultTokenServices defaultTokenServices = new DefaultTokenServices();
        defaultTokenServices.setTokenStore(tokenStore);
        return defaultTokenServices;
    }
}

另外,可以对外提供一个接口来实现定期续期 token,接口的逻辑如下:

@Autowired
private TokenStore tokenStore;

@Autowired
private ClientDetailsService clientDetailsService;

public void renewToken() {
    String token = SecurityUtils.getToken();
    if (StringUtils.isNotBlank(token)) {
        DefaultOAuth2AccessToken accessToken = (DefaultOAuth2AccessToken) tokenStore.readAccessToken(token);
        OAuth2Authentication authentication = tokenStore.readAuthentication(accessToken);
        String clientId = authentication.getOAuth2Request().getClientId();
        ClientDetails clientDetails = clientDetailsService.loadClientByClientId(clientId);
        // 刷新过期时间
        Date expiration = new Date(System.currentTimeMillis() + clientDetails.getAccessTokenValiditySeconds() * 1000L);
        accessToken.setExpiration(expiration);
        // 设置新的令牌 会自动再根据令牌对象过期时间设置 redis过期
        tokenStore.storeAccessToken(accessToken, authentication);
    }
}

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-06-26 16:47:16  更:2022-06-26 16:49:02 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 16:59:12-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码