Map缓存token

Map缓存Token 记录过期时间

java 复制代码
public String getToken() {
        AccessTokenSingleton atsl = AccessTokenSingleton.getInstance();
        Map<String, String> map = atsl.getMap();
        String accessToken = map.get("access_token");
        String time = map.get("time");
        Long nowDate = new Date().getTime();
        if (null != accessToken && null != time && nowDate - Long.parseLong(time) < 7200000) {
            log.error("look time:" + time + "; [北森] access_token" + accessToken);
            // 从缓存中读取accessToken数据
            return accessToken;
        } else {
            System.out.println("到期");
            // 获取token
            String tokenUrl = "https://get/token";
            Map<String, Object> params = new HashMap<String, Object>();
            params.put("grant_type", "client_credentials");
            params.put("app_key", "7B61AE4");
            params.put("app_secret", "60537D07A1D945D7A70DFF4D2");
            String sendJson = BizJsonUtils.toJson(params);
            HttpRequest post = HttpUtil.createPost(tokenUrl);
            post.body(sendJson);
            
            try (HttpResponse execute = post.execute()) {
              
                if (!execute.isOk()) {
                    throw new BizException("接口异常:" + execute);
                }
                String body = execute.body();
                JSONObject resJSON = JSONUtil.parseObj(body);
                Object access_token = resJSON.get("access_token");
                String errorCode = resJSON.get("error_code")==null?"":resJSON.get("error_code").toString();
                
                if (CFCUtils.isEmpty(access_token)||errorCode.equals("500010")) {
                    String msg = resJSON.get("error_description") == null ? "" : String.valueOf(resJSON.get("error_description"));
                    throw new BizException(msg);
                }
                Map<String, Object> responseMap = new HashMap<>();
                responseMap.put("access_token", access_token);
               
                accessToken = String.valueOf(responseMap.get("access_token"));
               
                map.put("time", String.valueOf(nowDate));
                map.put("access_token", accessToken);
            } catch (Exception e) {
                log.error("接口异常:{}", e.getMessage());
                throw new BizException(e.getMessage());
            }

            return accessToken;
        }

    }

单例设计模式AccessTokenSingleton 缓存token

java 复制代码
 static class AccessTokenSingleton {
        // 缓存accessToken 和 过期时间的 map
        private Map<String, String> map = new HashMap<String, String>();

        private AccessTokenSingleton() {
        }

        private static AccessTokenSingleton single = null;

        public static AccessTokenSingleton getInstance() {
            if (null == single) {
                single = new AccessTokenSingleton();
            }
            return single;
        }

        public Map<String, String> getMap() {
            return map;
        }

        public void setMap(Map<String, String> map) {
            this.map = map;
        }
    }
相关推荐
铁蛋AI编程实战1 分钟前
通义千问 3.5 Turbo GGUF 量化版本地部署教程:4G 显存即可运行,数据永不泄露
java·人工智能·python
晚霞的不甘13 分钟前
CANN 编译器深度解析:UB、L1 与 Global Memory 的协同调度机制
java·后端·spring·架构·音视频
SunnyDays101114 分钟前
使用 Java 冻结 Excel 行和列:完整指南
java·冻结excel行和列
摇滚侠26 分钟前
在 SpringBoot 项目中,开发工具使用 IDEA,.idea 目录下的文件需要提交吗
java·spring boot·intellij-idea
云姜.31 分钟前
java多态
java·开发语言·c++
李堇33 分钟前
android滚动列表VerticalRollingTextView
android·java
泉-java1 小时前
第56条:为所有导出的API元素编写文档注释 《Effective Java》
java·开发语言
zfoo-framework1 小时前
帧同步和状态同步
java
charlotte102410241 小时前
高并发:关于在等待学校教务系统选课时的碎碎念
java·运维·网络
亓才孓1 小时前
[JDBC]PreparedStatement替代Statement
java·数据库