发送短信验证码实现手机号码注册

1、用户注册

需求分析:注册账号,用手机号注册,填写后发送短信验证码,填写短信验证码正确方可注册成 功。

2、发送短信验证码

2.1、实现思路

在用户微服务编写API ,生成手机验证码,存入Redis并发送到RabbitMQ。

2.2、准备工作

(1)因为要用到缓存和消息队列,所以在用户微服务(user)引入 redis和amqp的依赖。
      
      
          org.springframework.boot
          spring-boot-starter-data-redis
      
      
      
          org.springframework.boot
          spring-boot-starter-amqp
      
(2)修改 application.yml ,在spring 节点下添加配置
spring: 
  application:  
    name: user #指定服务名
  # redis
  redis:
    host:  56.99.xxx.xxx
  # rabbitMQ
  rabbitmq:
    host:  56.99.xxx.xxx

2.3、实现代码

(1)在UserService中新增方法,用于发送短信验证码
    /*
     * @Description: //TODO 发送短信
     * @Param: [mobile] mobile手机号码
     * @return: void
     */
    public void sendSms(String mobile) {
        //生成6位数字随机数(RandomStringUtils 为 commons-lang3 中生成随机数方法,需引入commons-lang3依赖)
        String checkcode = RandomStringUtils.randomNumeric(6);
        //向缓存中存一份
        redisTemplate.opsForValue().set("checkcode_"+mobile, checkcode, 6, TimeUnit.HOURS);
        //给用户发一份
        Map map = new HashMap<>();
        map.put("mobile", mobile);
        map.put("checkcode", checkcode);
        rabbitTemplate.convertAndSend("sms", map);
        //在控制台显示一份【方便测试】
        System.out.println("验证码为:"+checkcode);
    }

commons-lang3 依赖

      
      
          org.apache.commons
          commons-lang3
      

(2)UserController新增方法
    /*
     * @Description: //TODO 发送短信验证码
     * @Param: mobile 手机号码
     * @return: 
     */
    @PostMapping("/sendsms/{mobile}")
    public Result sendSms(@PathVariable String mobile){
        userService.sendSms(mobile);
        return new Result(true, StatusCode.OK, "发送成功");
    }
(3)启动微服务,在rabbitMQ中创建名为sms的队列,测试API

3、用户注册

(1)UserService增加方法
   /**
     * 增加
     * @param user
     */
    public void add(User user) {
        user.setId( idWorker.nextId()+"" );
        userDao.save(user);
    }
(2)UserController增加方法

    /*
     * @Description: //TODO 用户注册
     * @Param: [code, user]
     * @return: entity.Result
     */
    @PostMapping("/register/{code}")
    public Result regist(@PathVariable String code, @RequestBody User user){
        //得到缓存中的验证码
        String checkcodeRedis = (String) redisTemplate.opsForValue().get("checkcode_"+user.getMobile());
        if (checkcodeRedis.isEmpty()){
            return new Result(false, StatusCode.ERROR, "请先获取验证码");
        }
        if(!checkcodeRedis.equals(code)){
            return new Result(false, StatusCode.ERROR, "验证码错误");
        }
        userService.add(user);
        return new Result(true, StatusCode.OK, "注册成功");
    }

(3)测试

4、短信微服务

4.1 、需求分析

   (1)、开发短信发送微服务,从rabbitMQ中提取消息,调用阿里云短信接口实现短信发送 。
   (2)、这里实际做的就是消息的消费者.。

4.2、提取队列中的消息

4.2.1、工程搭建

(1)创建工程模块:sms,pom.xml引入依赖
      
      
          org.springframework.boot
          spring-boot-starter-amqp
      
(2)创建application.yml
server:
  port: 9009
spring:
  application:
    name: sms #微服务名称
  rabbitmq:
    host: 56.99.xxx.xxx
(3)com.springboot.sms 包下创建启动类
@SpringBootApplication
public class SmsApplication {
    public static void main(String[] args) {
        SpringApplication.run(SmsApplication.class);
    }
}

4.2.2、消息监听类

(1)创建短信监听类,获取手机号和验证码
/**
 * 短信监听类
 */
@Component
@RabbitListener(queues = "sms")
public class SmsListener {

    @RabbitHandler
    public void executeSms(Map map) throws ClientException {
        String mobile = map.get("mobile");
        String checkcode = map.get("checkcode");
        System.out.println("手机号码:"+ mobile);
        System.out.println("验证码:"+ checkcode);
    }
}
(2)运行SmsApplication类,控制台显示手机号和验证码

4.3、 发送短信(阿里云通信)

4.3.1、准备工作

(1)在阿里云官网 www.alidayu.com 注册账号
(2)登陆阿里云,产品中选择”短信服务“
(3)申请签名
(4)申请模板
(5)创建 accessKey (注意保密!)
(6)充值

4.3.2 代码编写

(1)创建工程模块sms,pom.xml引入依赖
       
        
            com.aliyun
            aliyun-java-sdk-core
            4.0.6
        
        
            com.aliyun
            aliyun-java-sdk-dysmsapi
            1.1.0
        
        
        
            com.google.code.gson
            gson
            2.8.5
        
(2)修改application.yml ,增加配置
#阿里云短信相关
aliyun:
  sms:
    accessKeyId: 你自己的
    accessKeySecret: 你自己的
    template_code: 你自己的
    sing_name: 你自己的
(3)创建短信工具类SmsUtil
package com.springboot.sms.utils;
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.dysmsapi.model.v20170525.QuerySendDetailsRequest;
import com.aliyuncs.dysmsapi.model.v20170525.QuerySendDetailsResponse;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsRequest;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.env.Environment;
import org.springframework.stereotype.Component;

import java.text.SimpleDateFormat;
import java.util.Date;
/**
 * 短信工具类
 * @author Administrator
 *
 */
@Component
public class SmsUtil {

    //产品名称:云通信短信API产品,开发者无需替换
    static final String product = "Dysmsapi";
    //产品域名,开发者无需替换
    static final String domain = "dysmsapi.aliyuncs.com";

    @Autowired
    private Environment env;

    // TODO 此处需要替换成开发者自己的AK(在阿里云访问控制台寻找)

    /**
     * 发送短信
     * @param mobile 手机号
     * @param template_code 模板号
     * @param sign_name 签名
     * @param param 参数
     * @return
     * @throws ClientException
     */
    public SendSmsResponse sendSms(String mobile,String template_code,String sign_name,String param) throws ClientException {
        String accessKeyId =env.getProperty("aliyun.sms.accessKeyId");
        String accessKeySecret = env.getProperty("aliyun.sms.accessKeySecret");
        //可自助调整超时时间
        System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
        System.setProperty("sun.net.client.defaultReadTimeout", "10000");
        //初始化acsClient,暂不支持region化
        IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
        DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
        IAcsClient acsClient = new DefaultAcsClient(profile);
        //组装请求对象-具体描述见控制台-文档部分内容
        SendSmsRequest request = new SendSmsRequest();
        //必填:待发送手机号
        request.setPhoneNumbers(mobile);
        //必填:短信签名-可在短信控制台中找到
        request.setSignName(sign_name);
        //必填:短信模板-可在短信控制台中找到
        request.setTemplateCode(template_code);
        //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
        request.setTemplateParam(param);
        //选填-上行短信扩展码(无特殊需求用户请忽略此字段)
        //request.setSmsUpExtendCode("90997");
        //可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
        request.setOutId("yourOutId");
        //hint 此处可能会抛出异常,注意catch
        SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
        return sendSmsResponse;
    }

    public  QuerySendDetailsResponse querySendDetails(String mobile,String bizId) throws ClientException {
        String accessKeyId =env.getProperty("accessKeyId");
        String accessKeySecret = env.getProperty("accessKeySecret");
        //可自助调整超时时间
        System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
        System.setProperty("sun.net.client.defaultReadTimeout", "10000");
        //初始化acsClient,暂不支持region化
        IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
        DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
        IAcsClient acsClient = new DefaultAcsClient(profile);
        //组装请求对象
        QuerySendDetailsRequest request = new QuerySendDetailsRequest();
        //必填-号码
        request.setPhoneNumber(mobile);
        //可选-流水号
        request.setBizId(bizId);
        //必填-发送日期 支持30天内记录查询,格式yyyyMMdd
        SimpleDateFormat ft = new SimpleDateFormat("yyyyMMdd");
        request.setSendDate(ft.format(new Date()));
        //必填-页大小
        request.setPageSize(10L);
        //必填-当前页码从1开始计数
        request.setCurrentPage(1L);
        //hint 此处可能会抛出异常,注意catch
        QuerySendDetailsResponse querySendDetailsResponse = acsClient.getAcsResponse(request);
        return querySendDetailsResponse;
    }
}

(4)修改消息监听类,完成短信发送
package com.springboot.sms.listener;

import com.aliyuncs.exceptions.ClientException;
import com.tensquare.sms.utils.SmsUtil;
import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.env.Environment;
import org.springframework.stereotype.Component;

import java.util.Map;

/**
 * @Description: //TODO短信监听类
 */
@Component
@RabbitListener(queues = "sms")
public class SmsListener {

    @Autowired
    private SmsUtil smsUtil;

    @Autowired
    private Environment env;

    @RabbitHandler
    public void executeSms(Map map) throws ClientException {
        String mobile = map.get("mobile");
        String checkcode = map.get("checkcode");
        String template_code = env.getProperty("aliyun.sms.template_code");
        String sing_name = env.getProperty("aliyun.sms.sing_name");

        System.out.println("手机号码:"+ mobile);
        System.out.println("验证码:"+ checkcode);

        smsUtil.sendSms(mobile, template_code, sing_name, "{\"code\":\"" + checkcode + "\"}");
    }
}


相关问题总结:

1、项目中哪部分业务用到消息队列

用户注册发送短信验证码

2、项目中使用哪种消息队列?

rabbitMQ

3、RabbitMQ 有哪几种发送模式 ?

直接模式 、分列模式 、 主题模式、 headers

4、项目中如何发送短信

阿里云通信(阿里大于)

你可能感兴趣的:(发送短信验证码实现手机号码注册)