文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

SpringBoot Security如何实现单点登出并清除所有token

2023-07-05 00:40

关注

今天小编给大家分享一下SpringBoot Security如何实现单点登出并清除所有token的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

需求

记录token

pom 文件引入依赖

<dependency>   <groupId>org.springframework.boot</groupId>   <artifactId>spring-boot-starter-data-redis</artifactId></dependency><dependency>   <groupId>cn.hutool</groupId>   <artifactId>hutool-all</artifactId>   <version>5.7.13</version></dependency>

token 存储类 实现 AuthJdbcTokenStore

@Componentpublic class AuthJdbcTokenStore extends JdbcTokenStore {    public static final String USER_HAVE_TOKEN = "user-tokens:";    @Resource    RedisTemplate redisTemplate;    public AuthJdbcTokenStore(DataSource connectionFactory) {        super(connectionFactory);    }    @Override    public void storeAccessToken(OAuth3AccessToken token, OAuth3Authentication authentication) {        super.storeAccessToken(token, authentication);        if (Optional.ofNullable(authentication.getUserAuthentication()).isPresent()) {            User user = (User) authentication.getUserAuthentication().getPrincipal();            String userTokensKey = USER_HAVE_TOKEN + user.getUsername();            String tokenValue = token.getValue();            redisTemplate.opsForList().leftPush(userTokensKey, tokenValue);            Long seconds = redisTemplate.opsForValue().getOperations().getExpire(userTokensKey);            Long tokenExpTime = getExpTime(tokenValue);            Long expTime = seconds < tokenExpTime ? tokenExpTime : seconds;            redisTemplate.expire(userTokensKey, expTime, TimeUnit.SECONDS);        }    }    private long getExpTime(String accessToken) {        JWT jwt = JWTUtil.parseToken(accessToken);        cn.hutool.json.JSONObject jsonObject = jwt.getPayload().getClaimsJson();        long nowTime = Instant.now().getEpochSecond();        long expEndTime = jsonObject.getLong("exp");        long expTime = (expEndTime - nowTime);        return expTime;    }}

oauth_access_token 使用 JdbcTokenStore 存储 token 需要新增表

CREATE TABLE `oauth_access_token` (  `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,  `token_id` varchar(255) DEFAULT NULL,  `token` blob,  `authentication_id` varchar(255) DEFAULT NULL,  `user_name` varchar(255) DEFAULT NULL,  `client_id` varchar(255) DEFAULT NULL,  `authentication` blob,  `refresh_token` varchar(255) DEFAULT NULL,  UNIQUE KEY `authentication_id` (`authentication_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

AuthorizationServerConfigurerAdapter 使用 AuthJdbcTokenStore 做 token 存储

@Configuration@EnableAuthorizationServerpublic class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {    @Autowired    private DataSource dataSource;...    @Bean    public TokenStore tokenStore() {        JdbcTokenStore tokenStore = new AuthJdbcTokenStore(dataSource);        return tokenStore;    }    @Override    public void configure(AuthorizationServerEndpointsConfigurer endpoints) {        DefaultTokenServices tokenServices = new DefaultTokenServices();        tokenServices.setTokenStore(tokenStore());        endpoints                .authenticationManager(authenticationManager)                .tokenServices(tokenServices)                .accessTokenConverter(converter)        ;    }...}

清除token

@Componentpublic class AuthLogoutSuccessHandler1 extends SimpleUrlLogoutSuccessHandler {    String USER_HAVE_TOKEN = AuthJdbcTokenStore.USER_HAVE_TOKEN;    @Resource    RedisTemplate redisTemplate;    @Resource    TokenStore tokenStore;    @Override    public void onLogoutSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws IOException, ServletException {        if (!Objects.isNull(authentication)) {            String userName = authentication.getName();            String userTokensKey = USER_HAVE_TOKEN + userName;            Long size = redisTemplate.opsForList().size(userTokensKey);            List<String> list = redisTemplate.opsForList().range(userTokensKey, 0, size);            for (String tokenValue : list) {                OAuth3AccessToken token = tokenStore.readAccessToken(tokenValue);                if (Objects.nonNull(token)) {                    tokenStore.removeAccessToken(token);                }            }            redisTemplate.delete(userTokensKey);            super.handle(request, response, authentication);        }    }}

解决登出时长过长

场景:项目运行一段时间后,发现登出时间越来越慢

问题:通过 debug 发现耗时主要在删除 token 那一段

tokenStore.removeAccessToken(token);

原因:随着时间推移,token 越来越多,token 存储表 oauth_access_token 变得异常的大,所以删除效率非常差

解决办法:使用其他 TokenStore,或者清除 oauth_access_token 的表数据

以上就是“SpringBoot Security如何实现单点登出并清除所有token”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯