<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
阿里雲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其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45