首頁 > 軟體

SpringBoot實現阿里雲簡訊傳送的範例程式碼

2022-04-11 13:02:29

阿里雲accessID和secret請自行進入阿里雲申請

sms.template.code

請進入阿里雲,進行簡訊服務進行魔板新增

開原始碼地址在文章末尾

話不多說,直接上程式碼:

application.properties:

server.port=8002
#server.servlet.context-path=/
spring.datasource.url=jdbc:mysql://localhost:3306/ssm_message?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
spring.datasource.username=root
spring.datasource.password=19961117Lhh
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#開啟駝峰命名
mybatis.configuration.map-underscore-to-camel-case=true
#設定超時時間-可自行調整
sms.default.connect.timeout=sun.net.client.defaultConnectTimeout
sms.default.read.timeout=sun.net.client.defaultReadTimeout
sms.timeout=10000
#初始化ascClient需要的幾個引數
#簡訊API產品名稱(簡訊產品名固定,無需修改)
sms.product=Dysmsapi
#簡訊API產品域名(介面地址固定,無需修改)
sms.domain=dysmsapi.aliyuncs.com
#替換成你的AK (產品密)
#你的accessKeyId,填你自己的 上文設定所得  自行設定
sms.access.key.id=xxxx
#你的accessKeyId,填你自己的 上文設定所得  自行設定
sms.access.key.secret=xxxx
#阿里雲設定你自己的簡訊模板填入
sms.template.code=SMS_238470888

messageController

package com.example.demo.controller;

import com.alibaba.fastjson.JSON;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import com.example.demo.service.MessageService;
import com.example.demo.utils.MessageUtils;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.HashMap;
import java.util.Map;

@Api(description = "簡訊介面")
@RequestMapping("/smsLogin")
@RestController
public class MessageController {
    @Autowired
    public MessageService messageService;

    @Autowired
    public MessageUtils messageUtils;

    @ApiOperation(value = "獲取簡訊驗證碼介面", notes = "獲取簡訊驗證碼介面")
    @GetMapping("/sendMessage")
    public Map<String, Object> getSMSMessage(String phone) {
        Map<String, Object> map = new HashMap<>();
        if (phone == null || phone == "") {
            map.put("code", "FAIL");
            map.put("msg", "手機號為空");
            return map;
        }
        Map smsMap = messageUtils.getPhoneMsg(phone);
        if("OK".equals(smsMap.get("status"))){
            Map data = messageService.selectSMSDataByPhone(phone);
            map.put("phone", phone);
            map.put("smsCode", smsMap.get("msg"));
            // 將驗證碼存入資料庫  也可以考慮用redis等方式 這裡就用資料庫做例子
            if (data != null) {
                messageService.updateSMSDataByPhone(map);
            } else {
                messageService.insert(map);
            }
            smsMap.put("msg", "成功");
        }
        return smsMap;
    }

    @ApiOperation(value = "簡訊校驗登入介面", notes = "簡訊校驗登入介面")
    @GetMapping("/login")
    public Map<String, Object> login(String phone, String smsCode) {
        Map<String, Object> map = new HashMap<>();
        if (StringUtils.isEmpty(phone) || StringUtils.isEmpty(smsCode)) {
            map.put("code", "FAIL");
            map.put("msg", "請檢查資料");
            return map;
        }
        // 取出對應的驗證碼進行比較即可
        Map smsMap = messageService.selectSMSDataByPhone(phone);
        if (smsMap == null) {
            map.put("code", "FAIL");
            map.put("msg", "該手機號未傳送驗證碼");
            return map;
        }
        String code = (String) smsMap.get("sms_code");
        if (!smsCode.equals(code)) {
            map.put("code", "FAIL");
            map.put("msg", "驗證碼不正確");
            return map;
        }
        map.put("code", "OK");
        map.put("msg", "success");
        return map;
    }
}

MessageUtils

package com.example.demo.utils;

import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsRequest;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;

import java.util.HashMap;
import java.util.Map;


@Component
public class MessageUtils {
    @Autowired
    RestTemplate restTemplate;

    @Value("${sms.default.connect.timeout}")
    private String DEFAULT_CONNECT_TIMEOUT;

    @Value("${sms.default.read.timeout}")
    private String DEFAULT_READ_TIMEOUT;

    @Value("${sms.timeout}")
    private String SMS_TIMEOUT;

    @Value("${sms.product}")
    private String SMS_PRODUCT;

    @Value("${sms.domain}")
    private String SMS_DOMAIN;

    @Value("${sms.access.key.id}")
    private String SMS_ACCESSKEYID;

    @Value("${sms.access.key.secret}")
    private String SMS_ACCESSKEYSECRET;

    @Value("${sms.template.code}")
    private String TEMPLATE_CODE;

    private static String code;//code對應你簡訊目標裡面的引數

    public Map getPhoneMsg(String phone) {
        if (phone == null || phone == "") {
            System.out.println("手機號為空");
            return null;
        }
        // 設定超時時間-可自行調整
        System.setProperty(DEFAULT_CONNECT_TIMEOUT, SMS_TIMEOUT);
        System.setProperty(DEFAULT_READ_TIMEOUT, SMS_TIMEOUT);
        // 初始化ascClient需要的幾個引數
        final String product = SMS_PRODUCT;
        final String domain = SMS_DOMAIN;
        // 替換成你的AK
        final String accessKeyId = SMS_ACCESSKEYID;
        final String accessKeySecret = SMS_ACCESSKEYSECRET;
        // 初始化ascClient,暫時不支援多region
        IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou",
                accessKeyId, accessKeySecret);

        Map map = new HashMap();
        try {
            DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product,
                    domain);

            //獲取驗證碼
            code = vcode();
            IAcsClient acsClient = new DefaultAcsClient(profile);
            // 組裝請求物件
            SendSmsRequest request = new SendSmsRequest();
            // 使用post提交
            request.setMethod(MethodType.POST);
            // 必填:待傳送手機號。支援以逗號分隔的形式進行批次呼叫,批次上限為1000個手機號碼,批次呼叫相對於單條呼叫及時性稍有延遲,驗證碼型別的簡訊推薦使用單條呼叫的方式
            request.setPhoneNumbers(phone);
            // 必填:簡訊簽名-可在簡訊控制檯中找到
            request.setSignName("java學習");
            // 必填:簡訊模板-可在簡訊控制檯中找到
            request.setTemplateCode(TEMPLATE_CODE);
            // 可選:模板中的變數替換JSON串,如模板內容為"親愛的${name},您的驗證碼為$[code]"時,此處的值為
            // 友情提示:如果JSON中需要帶換行符,請參照標準的JSON協定對換行符的要求,比如簡訊內容中包含rn的情況在JSON中需要表示成\r\n,否則會導致JSON在伺服器端解析失敗
            request.setTemplateParam("{ "code":"" + code + ""}");
            // 可選-上行簡訊擴充套件碼(無特殊需求使用者請忽略此欄位)
            // request.setSmsUpExtendCode("90997");
            // 可選:outId為提供給業務方擴充套件欄位,最終在簡訊回執訊息中將此值帶回給呼叫者
            request.setOutId("yourOutId");
            // 請求失敗這裡會拋ClientException異常
            SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
            map.put("status", sendSmsResponse.getCode());
            if (sendSmsResponse.getCode() != null
                    && sendSmsResponse.getCode().equals("OK")) {
                // 請求成功
                map.put("msg", code);
            } else {
                //如果驗證碼出錯,會輸出錯誤碼告訴你具體原因
                map.put("msg", sendSmsResponse.getMessage());
            }
        } catch (Exception e) {
            e.printStackTrace();
            map.put("status", "FAIL");
            map.put("msg", "獲取簡訊驗證碼失敗");
        }
        return map;
    }

    /**
     * 生成6位亂數驗證碼
     *
     * @return
     */
    public static String vcode() {
        String vcode = "";
        for (int i = 0; i < 6; i++) {
            vcode = vcode + (int) (Math.random() * 9);
        }
        return vcode;
    }

}

主要程式碼已貼上

具體開原始碼:

前端程式碼

後端程式碼

以上就是SpringBoot實現阿里雲簡訊傳送的範例程式碼的詳細內容,更多關於SpringBoot阿里雲簡訊傳送的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com