短信平台
POM.xml
<!-- 阿里云短信平台 -->
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>
<version>3.7.1</version>
</dependency>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
<version>1.1.0</version>
</dependency>
AliDayunSms
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 lombok.extern.java.Log;
import lombok.extern.log4j.Log4j;
@Log4j
public class AliDayunSms {
public static boolean aliDayunSms(String phone,String msgCode) throws ClientException {
//设置超时时间-可自行调整
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 = "你的accessKeyId";//你的accessKeyId
final String accessKeySecret = "你的accessKeySecret";//你的accessKeySecret
//初始化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个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式;发送国际/港澳台消息时,接收号码格式为00+国际区号+号码,如“0085200000000”
request.setPhoneNumbers(phone);
//必填:短信签名-可在短信控制台中找到
request.setSignName("这是短信验证码");
//必填:短信模板-可在短信控制台中找到,发送国际/港澳台消息时,请使用国际/港澳台短信模版
request.setTemplateCode("wu1321552577");
//可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
//友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\\n,否则会导致JSON在服务端解析失败
//request.setTemplateParam("{\"code\":\"988756\"}");
request.setTemplateParam("{\"code\":\"" + msgCode + "\"}");
//请求失败这里会抛ClientException异常
SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
if (sendSmsResponse.getCode() != null && sendSmsResponse.getCode().equals("OK")) {
//请求成功
log.info("验证码发送成功:"+phone+"-"+msgCode);
return true;
} else {
log.info("验证码发送失败:"+sendSmsResponse.getMessage());
return false;
}
}
}
@RequestMapping("/sendcode")
@ResponseBody
public JsonResult<String> sendcode(HttpServletRequest req,
HttpServletResponse resp, Test test) throws ClientException {
// 指定允许其他域名访问
resp.setHeader("Access-Control-Allow-Origin", "*");
// 响应类型
resp.setHeader("Access-Control-Allow-Methods",
"POST, GET, DELETE, OPTIONS, DELETE");
resp.setHeader("Access-Control-Max-Age", "3600");
// 响应头设置
resp.setHeader("Access-Control-Allow-Headers",
"Content-Type, x-requested-with, X-Custom-Header, HaiYi-Access-Token");
long code = Math.round(Math.random() * 1000000);
String realCode = code + "";
final HttpSession httpSession = req.getSession();
String sessionId = httpSession.getId();
httpSession.setAttribute("checkCode", realCode);
String value = JedisUtils.set("JSESSIONID=" + sessionId, realCode,
15 * 60 * 1000);
String phone = test.getPhone();
if (AliDayunSms.aliDayunSms(test.getPhone(), realCode)) {
return new JsonResult<String>(0, "成功", sessionId);
}
return new JsonResult<String>(1, "失败", null);
}