目录
一.要求
1、输入手机号,点击发送后随机生成6位数字码,2分钟有效.
2、输入验证码,点击验证,返回成功或失败.
3、每个手机号每天只能输入3次
二.创建类并使用Random生成六位验证码
//1.生成6位数字的验证码
public static String getCode(){
Random random=new Random();
String code="";
for (int i = 0; i <6 ; i++) {
//每次生成0-9的整数数字
int rand = random.nextInt(10);
code+=rand;
}
return code;
}
三.将验证码放到redis中,并设置约束条件
//2.每个手机每天只能发送三次验证码,验证码放到redis中,设置过期时间120秒
public static void verifyCode(String phone){
//连接redis
Jedis jedis=new Jedis("192.168.249.111",6379); //linux的ip地址
//jedis.auth("1234");
//拼接key
//手机发送次数key
String countKey=phone+":count";
//验证码key
String codeKey=phone+":code";
//每个手机只能发送三次验证码
String count = jedis.get(countKey);
if (count==null){
//没有发送次数,第一次发送
//设置发送次数为1
jedis.setex(countKey,24*60*60,"1");
}else if(Integer.parseInt(count)<=2){
//发送次数+1
jedis.incr(countKey);
}else if(Integer.parseInt(count)>2){
//发送三次,不能再发送
System.out.println(&#