阿里云API定时发送短信(小记)

定时任务的代码:

import com.google.gson.Gson;
import com.jianke.bid.common.SMSUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * 定时器
 */
@Component
@Lazy(value=false)
public class TaskService {

   @Autowired
   private Gson gson;

   /**
    *@Description
    */
   @Scheduled( cron = "0 0 * * * ?")//网上有cron表达式在线生成器,可定义执行的时间
   public void sendSMSMsgTask() {
      System.out.println("定时任务执行开始-----------"+ DateFormatUtils.toDateDoDateFormat(new Date()));
       //获取短信模版
      String messageTemplate = "XXXX";
      //发送的手机
      String phoneNum = "135XXXXXXXX";
      //短信模版里需要展示的内容
      Map paramsMap = new HashMap<>();
      
      DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
      //发布时间
      paramsMap.put("publishtime", "XXXX-XX-XX");
      
      paramsMap.put("name", "XXX");
      
      paramsMap.put("num", "XXX");
      SMSUtils.SendSMS(phoneNum , messageTemplate, gson.toJson(paramsMap) );
       
      System.out.println("定时任务执行完成-----------"+DateFormatUtils.toDateDoDateFormat(new Date()));
   }
}

 

SMSUtils工具代码:

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;
public class SMSUtils {
    /**
     * 发送短信
     * 功能描述:
* @param phoneNumber * @param templateCode * @param paramString * @return 短信内容 */ @SuppressWarnings("unused") public static int SendSMS(String phoneNumber,String templateCode,String paramString){ // 设置超时时间-可自行调整 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 = "XXXXXX";// 你的accessKeyId final String accessKeySecret = "XXXXXX";// 你的accessKeySecret // 初始化ascClient,暂时不支持多region(请勿修改) IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret); try { DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain); } catch (ClientException e1) { e1.printStackTrace(); } IAcsClient acsClient = new DefaultAcsClient(profile); // 组装请求对象 SendSmsRequest request = new SendSmsRequest(); // 使用post提交 request.setMethod(MethodType.POST); // 必填:待发送手机号。支持以逗号分隔的形式进行批量调用,批量上限为1000个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式 request.setPhoneNumbers(phoneNumber); // 必填:短信签名-可在短信控制台中找到 request.setSignName("XXXXXX"); // 必填:短信模板-可在短信控制台中找到 request.setTemplateCode(templateCode); // 可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为 // 友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\\n,否则会导致JSON在服务端解析失败 // request.setTemplateParam("{\"name\":\"Tom\", \"code\":\"123\"}"); request.setTemplateParam(paramString); // 可选-上行短信扩展码(扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段) // request.setSmsUpExtendCode("90997"); // 可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者 // request.setOutId("yourOutId"); // 请求失败这里会抛ClientException异常 SendSmsResponse sendSmsResponse; try { sendSmsResponse = acsClient.getAcsResponse(request); if (sendSmsResponse.getCode() != null && sendSmsResponse.getCode().equals("OK")) { // 请求成功 return 0; } } catch (ClientException e) { e.printStackTrace(); } // 获取返回结果 return 1; }

 

springboot 启动定时器代码:

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.scheduling.annotation.EnableScheduling;//spring 自带定时器

/**
 * 应用模块名称
 *
 * @author Administrator
 */
@SpringBootApplication
@EnableScheduling
@ComponentScan("your project")
public class XxxWebApplication extends SpringBootServletInitializer {

    private static final Logger LOGGER = LoggerFactory.getLogger(XxxWebApplication.class);

    public static void main(String[] args) {
        LOGGER.info("正在启动用户中心服务......");
        SpringApplication.run(XxxWebApplication.class, args);
        // todo 检查相关配置是否完整

        LOGGER.info("服务已启动完成......");
    }

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(XXXWebApplication.class);
    }

}

 

你可能感兴趣的:(阿里云API定时发送短信(小记))