实际开发短信发送源码

package cn.itcast.core.listener;

import cn.itcast.core.util.SmsUtil;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jms.annotation.JmsListener;
import org.springframework.stereotype.Component;

import java.util.Map;

/**
 * 自定义监听器类
 */
@Component
public class SmsListener {
        @Autowired
    private SmsUtil smsUtil;

    /**
     * 接收消息服务器发送来的消息, 根据消息内容调用阿里运通讯接口发送短信
     * 从sms队列中接收消息
     */
    @JmsListener(destination = "sms")
    public void sendCode(Map<String, String> paramMap) throws Exception {
        //1. 从获取到的Map类型的消息中获取内容
        //模板编号
        String templateCode = paramMap.get("templateCode");
        //签名
        String singName = paramMap.get("singName");
        //手机号
        String phone = paramMap.get("phone");
        //短信内容
        String content = paramMap.get("content");
        //2. 调用阿里云通讯平台接口发送短讯
        SendSmsResponse sendSmsResponse = smsUtil.sendSms(templateCode, singName, phone, content);
        if(sendSmsResponse.getCode() != null && sendSmsResponse.getCode().equals("OK")) {
            System.out.println("=====手机号:======"+phone+"====短信发送成功!=====");
        }
    }
}
package cn.itcast.core.util;

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.http.MethodType;
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;

/**
 * 发送短信工具类
 */
@Component
public class SmsUtil {

    @Autowired
    private Environment env;

    /**
     * 调用此工具方法, 发送短信(使用的是阿里云通讯平台发送)
     * @param templateNum   模板编号
     * @param signName      签名
     * @param phone         发送目标的电话号
     * @param content       发送的内容
     */
    public SendSmsResponse sendSms(String templateNum, String signName, String phone, String content) throws Exception {
        //获取配置文件中, 发送短信的账户名
        String userName = env.getProperty("pyg.accessKeyId");
        //获取配置文件中, 发送短信的密码
        String pwd = env.getProperty("pyg.accessKeySecret");

        //设置超时时间-可自行调整
        System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
        System.setProperty("sun.net.client.defaultReadTimeout", "10000");
        //初始化ascClient需要的几个参数
        final String product = "Dysmsapi";//短信API产品名称(短信产品名固定,无需修改)
        final String domain = "dysmsapi.aliyuncs.com";//短信API产品域名(接口地址固定,无需修改)
        //替换成你的AK
        final String accessKeyId = userName;//你的accessKeyId,参考本文档步骤2
        final String accessKeySecret = pwd;//你的accessKeySecret,参考本文档步骤2
        //初始化ascClient,暂时不支持多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();
        //使用post提交
        request.setMethod(MethodType.POST);
        //必填:待发送手机号。支持以逗号分隔的形式进行批量调用,批量上限为1000个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式;发送国际/港澳台消息时,接收号码格式为国际区号+号码,如“85200000000”
        request.setPhoneNumbers(phone);
        //必填:短信签名-可在短信控制台中找到
        request.setSignName(signName);
        //必填:短信模板-可在短信控制台中找到,发送国际/港澳台消息时,请使用国际/港澳台短信模版
        request.setTemplateCode(templateNum);
        //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
        //友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\\n,否则会导致JSON在服务端解析失败
        request.setTemplateParam(content);
        //可选-上行短信扩展码(扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段)
        //request.setSmsUpExtendCode("90997");
        //可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
        request.setOutId("yourOutId");
        //请求失败这里会抛ClientException异常
        SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
        System.out.println("==getCode===" + sendSmsResponse.getCode());
        System.out.println("===getRequestId===" + sendSmsResponse.getRequestId());
        System.out.println("==getBizId====" + sendSmsResponse.getBizId());
        System.out.println("===getMessage===" + sendSmsResponse.getMessage());
        return sendSmsResponse;
    }
}
package cn.itcast.core;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * 这个注解表示这个类为springBoot启动类
 */
@SpringBootApplication
public class Application {

    /**
     * springBoot项目的启动入口, 运行这个main方法, 那么就会调用底层的tomcat插件,
     * 运行tomcat.本项目就可以启动
     * 项目写好后需要上线的时候将项目打成jar包, 在线上使用java -jar xxxxxx.jar命令运行这个jar包就可以
     * @param args
     */
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}
server.port=9003
spring.activemq.broker-url=tcp://192.168.200.128:61616
pyg.accessKeyId=自己申请的
pyg.accessKeySecret=自己申请的

 

posted @ 2019-05-15 21:17  MyCreep  阅读(908)  评论(0编辑  收藏  举报