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工具类、就不贴了,朋友们可以自行替换成自己的。

相关文章
|
2月前
|
数据采集 监控 安全
阿里云短信服务+图形认证,有效降低验证码盗刷概率
阿里云短信服务+图形认证服务,有效降低验证码盗刷概率。
236 3
阿里云短信服务+图形认证,有效降低验证码盗刷概率
|
28天前
|
安全 API PHP
港澳台验证码海外短信群发教程,利用阿里云国际如何实现境外短信操作
港澳台验证码海外短信群发教程,利用阿里云国际如何实现境外短信操作
|
1月前
|
运维 监控 搜索推荐
阿里大鱼进行发短信业务---使用详细步骤-Java操作
这篇文章详细介绍了如何在Java中使用阿里大鱼服务来发送短信,包括开通短信服务、签名和模板管理,以及具体的Java开发步骤和代码示例。
74 0
阿里大鱼进行发短信业务---使用详细步骤-Java操作
|
1月前
|
Java
Java 登录输入的验证码
Java 登录输入的验证码
23 1
|
2月前
|
存储 SQL 分布式计算
Java连接阿里云MaxCompute例
要使用Java连接阿里云MaxCompute数据库,首先需在项目中添加MaxCompute JDBC驱动依赖,推荐通过Maven管理。避免在代码中直接写入AccessKey,应使用环境变量或配置文件安全存储。示例代码展示了如何注册驱动、建立连接及执行SQL查询。建议使用RAM用户提升安全性,并根据需要配置时区和公网访问权限。具体步骤和注意事项请参考阿里云官方文档。
|
2月前
|
存储 NoSQL Java
|
3月前
|
数据采集 存储 监控
99%成功率背后:阿里云短信服务有何优势?
为什么短信会发送失败,如何提高短信发送成功率,本文将为您介绍短信发送成功率和阿里云短信服务如何保障企业短信稳定送达等相关知识。
180 1
99%成功率背后:阿里云短信服务有何优势?
|
3月前
|
Java 开发工具
通过Java SDK调用阿里云模型服务
在阿里云平台上,可以通过创建应用并使用模型服务完成特定任务,如生成文章内容。本示例展示了一段简化的Java代码,演示了如何调用阿里云模型服务生成关于“春秋战国经济与文化”的简短文章。示例代码通过设置系统角色为历史学家,并提出文章生成需求,最终处理并输出生成的文章内容。在实际部署前,请确保正确配置环境变量中的密钥和ID,并根据需要调整SDK导入语句及类名。更多详情和示例,请参考相关链接。
|
3月前
|
存储 安全 网络安全
|
4月前
|
开发框架 前端开发 JavaScript
ABP框架中短信发送处理,包括阿里云短信和普通短信商的短信发送集成
ABP框架中短信发送处理,包括阿里云短信和普通短信商的短信发送集成
ABP框架中短信发送处理,包括阿里云短信和普通短信商的短信发送集成