mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-19 18:45:03 +08:00
update 短信验证码
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
package com.jsowell.common.util;
|
||||
|
||||
import com.alibaba.fastjson2.JSON;
|
||||
import com.github.qcloudsms.SmsSingleSender;
|
||||
import com.github.qcloudsms.SmsSingleSenderResult;
|
||||
import com.github.qcloudsms.httpclient.HTTPException;
|
||||
import com.jsowell.common.constant.CacheConstants;
|
||||
import com.jsowell.common.constant.Constants;
|
||||
import com.jsowell.common.core.redis.RedisCache;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@@ -15,6 +17,7 @@ import java.io.IOException;
|
||||
/**
|
||||
* 发送短信验证码工具类
|
||||
*/
|
||||
@Slf4j
|
||||
@Component
|
||||
public class SMSUtil {
|
||||
|
||||
@@ -52,6 +55,7 @@ public class SMSUtil {
|
||||
SmsSingleSenderResult result = ssender.sendWithParam(NATION_CODE, phoneNumber, TEMPLATE_ID, params, SMS_SIGN, "", "");
|
||||
if (result.result != 0) {
|
||||
reStr = "error";
|
||||
log.error("发送验证码失败:{}", JSON.toJSONString(result));
|
||||
} else {
|
||||
// 改为保存redis
|
||||
String redisKey = CacheConstants.SMS_VERIFICATION_CODE_KEY + phoneNumber;
|
||||
|
||||
Reference in New Issue
Block a user