Jedis 模拟验证码发送案例

public class Demo1 {
    public static void main(String[] args) {
//       vertifyCode("15022588756");
         checkCode("240329","15022588756");

    }


    //①随机生成一个六位数字的随机数
    public static String getCode(){
        String code="";
        Random r = new Random();
        for (int i = 0; i <6 ; i++) {
            code+= r.nextInt(10);
        }
        return code;
    }
    //②每个手机每天只能发送三次验证码,保存到redis中,设置过期时间120s
    public static void vertifyCode(String phone){
        String keyCount="Vertify"+phone+":KeyCount";
        String keyCode="Vertify"+phone+":KeyCode";

        Jedis jedis = new Jedis("49.232.145.5", 6379);
        String count = jedis.get(keyCount);
        //count==null表示一次都没有发送
        if(count==null){
            jedis.setex(keyCount,24*60*60,"1");
        //第二次或第三次发送
        }else if(Integer.parseInt(count)<=2){
            jedis.incr(keyCount);
        //第四次发送时,失败
        }else if(Integer.parseInt(count)>2){
            System.out.println("您今天的次数已经用完了!");
            jedis.close();
        }

        //验证码保存到redis里
        String code = getCode();
        System.out.println(code);
        jedis.setex(keyCode,120,code);
        jedis.close();

    }
    //③验证码校验功能
    public static void checkCode(String code,String phone){
        String keyCode="Vertify"+phone+":KeyCode";
        Jedis jedis = new Jedis("49.232.145.5", 6379);
        if (code.equals(jedis.get(keyCode))){
            System.out.println("验证码正确!");
        }else{
            System.out.println("验证码输入错误");
        }
        jedis.close();
    }



}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值