短信验证码缓存key未包含uuid问题处理

This commit is contained in:
Chopper 2021-12-20 09:37:34 +08:00
parent 9f75e1fae8
commit e8f44ef6f2

View File

@ -155,7 +155,7 @@ public class SmsUtilAliImplService implements SmsUtil, AliSmsUtil {
try { try {
SendSmsResponse response = client.sendSms(sendSmsRequest); SendSmsResponse response = client.sendSms(sendSmsRequest);
} catch (Exception e) { } catch (Exception e) {
log.error("发送短信错误",e); log.error("发送短信错误", e);
} }
} }
@ -191,7 +191,7 @@ public class SmsUtilAliImplService implements SmsUtil, AliSmsUtil {
try { try {
client.sendBatchSms(sendBatchSmsRequest); client.sendBatchSms(sendBatchSmsRequest);
} catch (Exception e) { } catch (Exception e) {
log.error("批量发送短信错误",e); log.error("批量发送短信错误", e);
} }
} }
@ -363,7 +363,7 @@ public class SmsUtilAliImplService implements SmsUtil, AliSmsUtil {
config.endpoint = "dysmsapi.aliyuncs.com"; config.endpoint = "dysmsapi.aliyuncs.com";
return new com.aliyun.dysmsapi20170525.Client(config); return new com.aliyun.dysmsapi20170525.Client(config);
} catch (Exception e) { } catch (Exception e) {
log.error("短信初始化错误",e); log.error("短信初始化错误", e);
} }
return null; return null;
} }
@ -377,6 +377,6 @@ public class SmsUtilAliImplService implements SmsUtil, AliSmsUtil {
* @return * @return
*/ */
static String cacheKey(VerificationEnums verificationEnums, String mobile, String uuid) { static String cacheKey(VerificationEnums verificationEnums, String mobile, String uuid) {
return CachePrefix.SMS_CODE.getPrefix() + verificationEnums.name() + mobile; return CachePrefix.SMS_CODE.getPrefix() + verificationEnums.name() + uuid + mobile;
} }
} }