java使用阿里云短信服务发送短信验证码

本文涉及的产品
云数据库 Tair(兼容Redis),内存型 2GB
Redis 开源版,标准版 2GB
推荐场景:
搭建游戏排行榜
短信服务,100条 3个月
简介: java使用阿里云短信服务发送短信验证码

需要依赖的pom:

<dependency><groupId>com.aliyun</groupId><artifactId>dysmsapi20170525</artifactId><version>2.0.1</version></dependency>


java代码:



packagecom.ehl.developerplatform.service.impl;
importcom.alibaba.fastjson.JSONObject;
importcom.aliyun.dysmsapi20170525.models.SendSmsRequest;
importcom.aliyun.dysmsapi20170525.models.SendSmsResponse;
importcom.aliyun.teaopenapi.models.Config;
importcom.ehl.developerplatform.config.SmsProperties;
importcom.ehl.developerplatform.enums.ResponseEnum;
importcom.ehl.developerplatform.exception.DeveloperPlatFormException;
importcom.ehl.developerplatform.pojo.DataResponse;
importcom.ehl.developerplatform.util.RedisPrefix;
importcom.ehl.developerplatform.util.RedisUtil;
importlombok.extern.slf4j.Slf4j;
importorg.springframework.beans.factory.annotation.Autowired;
importorg.springframework.boot.context.properties.EnableConfigurationProperties;
importorg.springframework.stereotype.Service;
importjava.util.HashMap;
importjava.util.Map;
/*** #------------------------------------------------------------------- #* #                   CONFIDENTIAL --- CUSTOM STUDIOS                  #* #------------------------------------------------------------------- #* #                                                                    #* #                   @Project Name : develop                          #* #                                                                    #* #                   @File Name    : SmsService.java                  #* #                                                                    #* #                   @Programmer   : 王震                              #* #                                                                    #* #                   @Start Date   : 2021/4/28 18:08                  #* #                                                                    #* #                   @Last Update  : 2021/4/28 18:08                  #* #                                                                    #* #------------------------------------------------------------------- #* # Classes:                                                           #* #                                                                    #* #------------------------------------------------------------------- #*/@Slf4j@Service@SuppressWarnings("all")
@EnableConfigurationProperties(value=SmsProperties.class)
publicfinalclassSmsService {
@AutowiredprivateSmsPropertiessmsProperties;
@AutowiredprivateRedisUtilredisUtil;
privateSmsService() {
    }
/*** 功能描述: <br>* 〈根据用户输入的phone发送验证码〉** @Param: [phone] 电话号码* @Return: com.ehl.developerplatform.pojo.DataResponse* @Author: 王震* @Date: 2021/4/28 19:01*/publicDataResponse<?>sendSmsCode(finalStringphone) {
Stringcode=this.randomCode();
Stringmessage=this.sendMessage(phone, code).getBody().getMessage();
if (!"OK".equals(message)) {
log.error("手机号码:{},发送短信失败,失败原因:{},code:{}", phone, message,code);
returnDataResponse.fail(ResponseEnum.SEND_MESSAGE_ERROR);
        }
log.info("手机号码:{},发送短信成功,验证码为:{}", phone, code);
redisUtil.set(RedisPrefix.buildSendMessageKey(phone), code, 300);
returnDataResponse.success("短信发送成功!");
    }
publicSendSmsResponsesendMessage(finalStringphone, finalStringcode) {
try {
com.aliyun.dysmsapi20170525.Clientclient=createClient(smsProperties.getAccessKeyId(), smsProperties.getAccessKeySecret());
Map<String, Object>map=newHashMap<>();
map.put("code", code);
SendSmsRequestsendSmsRequest=newSendSmsRequest()
                    .setSignName(smsProperties.getSignName())
                    .setTemplateCode(smsProperties.getTemplate())
                    .setPhoneNumbers(phone)
                    .setTemplateParam(JSONObject.toJSONString(map));
// 复制代码运行请自行打印 API 的返回值returnclient.sendSms(sendSmsRequest);
        } catch (Exceptione) {
log.error("手机号码:{},发送短信失败,失败原因:{}", phone, e.getMessage());
thrownewDeveloperPlatFormException(ResponseEnum.SEND_MESSAGE_ERROR);
        }
    }
/*** 使用AK&SK初始化账号Client** @param accessKeyId* @param accessKeySecret* @return Client* @throws Exception*/publicstaticcom.aliyun.dysmsapi20170525.ClientcreateClient(finalStringaccessKeyId, finalStringaccessKeySecret) throwsException {
Configconfig=newConfig()
// 您的AccessKey ID                .setAccessKeyId(accessKeyId)
// 您的AccessKey Secret                .setAccessKeySecret(accessKeySecret);
// 访问的域名config.endpoint="dysmsapi.aliyuncs.com";
returnnewcom.aliyun.dysmsapi20170525.Client(config);
    }
/*** 功能描述: <br>* 〈随机数6位〉** @Return: com.ehl.developerplatform.pojo.DataResponse* @Author: 王震* @Date: 2021/4/28 19:34*/privateStringrandomCode() {
returnString.valueOf((int) ((Math.random() *9+1) *Math.pow(10, 5)));
    }
}



一些项目中的redis工具类、就不贴了,朋友们可以自行替换成自己的。

相关文章
|
3月前
|
数据采集 监控 安全
阿里云短信服务+图形认证,有效降低验证码盗刷概率
阿里云短信服务+图形认证服务,有效降低验证码盗刷概率。
314 3
阿里云短信服务+图形认证,有效降低验证码盗刷概率
|
2月前
|
安全 API PHP
港澳台验证码海外短信群发教程,利用阿里云国际如何实现境外短信操作
港澳台验证码海外短信群发教程,利用阿里云国际如何实现境外短信操作
|
6月前
|
存储 小程序 前端开发
【微信小程序 - 工作实战分享】1.微信小程序发送手机短信验证码(阿里云)
【微信小程序 - 工作实战分享】1.微信小程序发送手机短信验证码(阿里云)
537 0
|
2月前
|
运维 监控 搜索推荐
阿里大鱼进行发短信业务---使用详细步骤-Java操作
这篇文章详细介绍了如何在Java中使用阿里大鱼服务来发送短信,包括开通短信服务、签名和模板管理,以及具体的Java开发步骤和代码示例。
104 0
阿里大鱼进行发短信业务---使用详细步骤-Java操作
|
2月前
|
Java
Java 登录输入的验证码
Java 登录输入的验证码
35 1
|
4月前
|
数据采集 存储 监控
99%成功率背后:阿里云短信服务有何优势?
为什么短信会发送失败,如何提高短信发送成功率,本文将为您介绍短信发送成功率和阿里云短信服务如何保障企业短信稳定送达等相关知识。
216 1
99%成功率背后:阿里云短信服务有何优势?
|
3月前
|
存储 NoSQL Java
|
4月前
|
存储 安全 网络安全
|
5月前
|
开发框架 前端开发 JavaScript
ABP框架中短信发送处理,包括阿里云短信和普通短信商的短信发送集成
ABP框架中短信发送处理,包括阿里云短信和普通短信商的短信发送集成
ABP框架中短信发送处理,包括阿里云短信和普通短信商的短信发送集成
|
4月前
|
小程序
阿里云短信签名申请流程,有图,短信接入新手教程
阿里云短信签名是短信中的标识信息,如【阿里云】,用于表明发送方身份。申请流程简便:登录阿里云短信服务控制台,选择签名管理并添加签名,填写相关信息。审核通常2小时内完成。个人用户每日限申请一个通用签名,企业用户数量不限。已通过审核的签名不可更改名称,仅能调整其他信息并重新提交审核。更多详情及FAQ