07 2022 档案
摘要:/** * 查询key的生命周期 * @param key redis 存数据的键 * @return 默认单位秒,也可以自行传入单位 */public long getKeyExpire(String key) { return redisTemplate.getExpire(key);}
阅读全文
摘要:package ideal4j.pfa.config.redis; import cn.hutool.core.date.DateTime; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; impor
阅读全文
摘要:String base64Url = base64UrlArray.get(0)+"";BASE64Decoder decoder = new BASE64Decoder();returnUrl = fileService.upload(decoder.decodeBuffer(base64Url)
阅读全文