php手机验证码倒计时清空session,Session中短信验证码设置有效时间

package com.mozq.boot.kuayu01.controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpSession;

import java.text.SimpleDateFormat;

import java.util.*;

import java.util.concurrent.Executors;

import java.util.concurrent.ScheduledExecutorService;

import java.util.concurrent.TimeUnit;

/*

问题:短信验证码过期清除策略,因为使用任务调度,无法取消先前的任务,前一次验证码定时任务会清除后面生成验证码。

方案:验证码加时间戳的方式,清除前先判断时间戳是不是与该任务相同,不想同则说明验证码已经重新生成,此定时任务不应清除这个验证码。

*/

@RestController

public class SmsController {

//创建线程池对象

ScheduledExecutorService scheduledExecutorService = Executors.newScheduledThreadPool(10);

@RequestMapping("/sendSmsCheckCode")

public String sendSmsCheckCode(HttpSession session){

int code = (int) ((Math.random() + 1) * Math.pow(10, 5));

String timeStamp = timeStamp();

//添加时间戳

Map codeMap = new HashMap<>();

codeMap.put("code", String.valueOf(code));

codeMap.put("timestamp", timeStamp);

session.setAttribute("code", codeMap);

System.out.println(codeMap);

//清除时根据时间戳判断是不是这个任务对应的验证码

scheduledExecutorService.schedule(new Thread(()->{

Map codeMapS = (Map) session.getAttribute("code");

System.out.println(codeMapS);

if(Objects.nonNull(codeMapS) && timeStamp.equals(codeMapS.get("timestamp"))){

session.removeAttribute("code");

System.out.println("清除session" + codeMapS);

}

}), 20, TimeUnit.SECONDS);

return String.valueOf(code);

}

@RequestMapping("/check")

public String check(HttpSession session){

Integer code = (Integer) session.getAttribute("code");

if(Objects.isNull(code)){

System.out.println("验证码为空");

}

System.out.println(code);

//使用一次之后,清除验证码

session.removeAttribute("code");

return String.valueOf(code);

}

public static String timeStamp(){

String format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS").format(new Date());

return format;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值