当前位置:   article > 正文

Springboot+Redis接入腾讯云短信服务实现验证码发送_spring boot云信连接

spring boot云信连接

目录

一、开通腾讯云短信服务

二、代码实现

三、测试   


  申请阿里云短信服务需要以上线APP或已备案网站,腾讯云短信服务可以使用微信公众号申请,注册个人微信公众号比较方便,改用腾讯云短信服务,参考官方SDK文档实现验证码发送微服务模块。

一、开通腾讯云短信服务

具体流程在之前的博客:腾讯云短信服务申请+测试

二、代码实现

官方SDK文档 短信 Java SDK-SDK 文档-文档中心-腾讯云-腾讯云 (tencent.com)

1、通过Maven安装SDK

  1. <dependencies>
  2. <dependency>
  3. <groupId>com.tencentcloudapi</groupId>
  4. <artifactId>tencentcloud-sdk-java</artifactId>
  5. <!-- go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. -->
  6. <!-- 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询所有版本,最新版本如下 -->
  7. <version>3.1.526</version>
  8. </dependency>
  9. </dependencies>

2、项目结构

微服务在线教育项目的其中一个模块用到短信验证,部分结构如图所示

3、编写application.properties

3.1 加入腾讯云短信服务相关参数

  1. #腾讯云SMS参数 等号后面替换成自己腾讯云上的参数
  2. tencentcloud.sms.secretId=xxxxxxxxxxxxxxxxxxxx
  3. tencentcloud.sms.secretKey=xxxxxxxxxxxxxxxxxxxx
  4. tencentcloud.sms.sdkAppId=xxxxxxxxxx
  5. tencentcloud.sms.signName=xxxxxxxx
  6. tencentcloud.sms.templateId=xxxxxxx

3.2 加入Redis相关配置

  1. spring.redis.host=redishost
  2. spring.redis.port=6379
  3. spring.redis.database= 0
  4. spring.redis.timeout=1800000

4、编写工具类

4.1 Redis配置工具类

  1. @EnableCaching
  2. @Configuration
  3. public class RedisConfig extends CachingConfigurerSupport {
  4. @Bean
  5. public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) {
  6. RedisTemplate<String, Object> template = new RedisTemplate<>();
  7. RedisSerializer<String> redisSerializer = new StringRedisSerializer();
  8. Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
  9. ObjectMapper om = new ObjectMapper();
  10. om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
  11. om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
  12. jackson2JsonRedisSerializer.setObjectMapper(om);
  13. template.setConnectionFactory(factory);
  14. //key序列化方式
  15. template.setKeySerializer(redisSerializer);
  16. //value序列化
  17. template.setValueSerializer(jackson2JsonRedisSerializer);
  18. //value hashmap序列化
  19. template.setHashValueSerializer(jackson2JsonRedisSerializer);
  20. return template;
  21. }
  22. @Bean
  23. public CacheManager cacheManager(RedisConnectionFactory factory) {
  24. RedisSerializer<String> redisSerializer = new StringRedisSerializer();
  25. Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
  26. //解决查询缓存转换异常的问题
  27. ObjectMapper om = new ObjectMapper();
  28. om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
  29. om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
  30. jackson2JsonRedisSerializer.setObjectMapper(om);
  31. // 配置序列化(解决乱码的问题),过期时间600秒
  32. RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig()
  33. .entryTtl(Duration.ofSeconds(600))
  34. .serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(redisSerializer))
  35. .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(jackson2JsonRedisSerializer))
  36. .disableCachingNullValues();
  37. RedisCacheManager cacheManager = RedisCacheManager.builder(factory)
  38. .cacheDefaults(config)
  39. .build();
  40. return cacheManager;
  41. }
  42. }

4.2 获取随机数

  1. public class RandomUtil {
  2. private static final Random random = new Random();
  3. private static final DecimalFormat fourdf = new DecimalFormat("0000");
  4. private static final DecimalFormat sixdf = new DecimalFormat("000000");
  5. public static String getFourBitRandom() {
  6. return fourdf.format(random.nextInt(10000));
  7. }
  8. public static String getSixBitRandom() {
  9. return sixdf.format(random.nextInt(1000000));
  10. }
  11. }

4.3 读取配置文件中的内容

  1. @Component
  2. @Data
  3. public class SmsConstantUtils implements InitializingBean {
  4. //读取配置文件内容
  5. @Value("${tencentcloud.sms.secretId}")
  6. private String secretId;
  7. @Value("${tencentcloud.sms.secretKey}")
  8. private String secretKey;
  9. @Value("${tencentcloud.sms.sdkAppId}")
  10. private String sdkAppId;
  11. @Value("${tencentcloud.sms.signName}")
  12. private String signName;
  13. @Value("${tencentcloud.sms.templateId}")
  14. private String templateId;
  15. //定义公开静态常量
  16. public static String SECRET_ID;
  17. public static String SECRET_KEY;
  18. public static String SDKAPP_ID;
  19. public static String SIGN_NAME;
  20. public static String TEMPLATED_ID;
  21. @Override
  22. public void afterPropertiesSet() throws Exception {
  23. SECRET_ID=secretId;
  24. SECRET_KEY=secretKey;
  25. SDKAPP_ID=sdkAppId;
  26. SIGN_NAME=signName;
  27. TEMPLATED_ID=templateId;
  28. }
  29. }

5、接口SmsService

  1. public interface SmsService {
  2. boolean send(String phone, String param);
  3. }

6、实现类SmsServiceImpl

注意: 这里导入腾讯云api的版本都是 com.tencentcloudapi.sms.v20210111.xxxx 

  1. @Service
  2. @Slf4j
  3. public class SmsServiceImpl implements SmsService {
  4. @Autowired
  5. private SmsConstantUtils smsConstantUtils;
  6. @Override
  7. public boolean send(String phone, String param) {
  8. String phoneNumber = "+86" + phone;
  9. String secretId = smsConstantUtils.getSecretId();
  10. String secretKey = smsConstantUtils.getSecretKey();
  11. String sdkAppId = smsConstantUtils.getSdkAppId();
  12. String signName = smsConstantUtils.getSignName();
  13. String templateId = smsConstantUtils.getTemplateId();
  14. String[] phoneNumberSet = {phoneNumber};
  15. String[] templateParamSet = {param.toString()};//对应模板中{1}
  16. try {
  17. /* 必要步骤:
  18. * 实例化一个认证对象,入参需要传入腾讯云账户密钥对secretId,secretKey。
  19. * 这里采用的是从环境变量读取的方式,需要在环境变量中先设置这两个值。
  20. * 你也可以直接在代码中写死密钥对,但是小心不要将代码复制、上传或者分享给他人,
  21. * 以免泄露密钥对危及你的财产安全。
  22. * SecretId、SecretKey 查询: https://console.cloud.tencent.com/cam/capi */
  23. Credential cred = new Credential(secretId, secretKey);
  24. // 实例化一个http选项,可选,没有特殊需求可以跳过
  25. HttpProfile httpProfile = new HttpProfile();
  26. // 设置代理(无需要直接忽略)
  27. // httpProfile.setProxyHost("真实代理ip");
  28. // httpProfile.setProxyPort(真实代理端口);
  29. /* SDK默认使用POST方法。
  30. * 如果你一定要使用GET方法,可以在这里设置。GET方法无法处理一些较大的请求 */
  31. httpProfile.setReqMethod("POST");
  32. /* SDK有默认的超时时间,非必要请不要进行调整
  33. * 如有需要请在代码中查阅以获取最新的默认值 */
  34. httpProfile.setConnTimeout(60);
  35. /* 指定接入地域域名,默认就近地域接入域名为 sms.tencentcloudapi.com ,也支持指定地域域名访问,例如广州地域的域名为 sms.ap-guangzhou.tencentcloudapi.com */
  36. httpProfile.setEndpoint("sms.tencentcloudapi.com");
  37. /* 非必要步骤:
  38. * 实例化一个客户端配置对象,可以指定超时时间等配置 */
  39. ClientProfile clientProfile = new ClientProfile();
  40. /* SDK默认用TC3-HMAC-SHA256进行签名
  41. * 非必要请不要修改这个字段 */
  42. clientProfile.setSignMethod("HmacSHA256");
  43. clientProfile.setHttpProfile(httpProfile);
  44. /* 实例化要请求产品(以sms为例)的client对象
  45. * 第二个参数是地域信息,可以直接填写字符串ap-guangzhou,支持的地域列表参考 https://cloud.tencent.com/document/api/382/52071#.E5.9C.B0.E5.9F.9F.E5.88.97.E8.A1.A8 */
  46. SmsClient client = new SmsClient(cred, "ap-guangzhou", clientProfile);
  47. /* 实例化一个请求对象,根据调用的接口和实际情况,可以进一步设置请求参数
  48. * 你可以直接查询SDK源码确定接口有哪些属性可以设置
  49. * 属性可能是基本类型,也可能引用了另一个数据结构
  50. * 推荐使用IDE进行开发,可以方便的跳转查阅各个接口和数据结构的文档说明 */
  51. SendSmsRequest req = new SendSmsRequest();
  52. /* 填充请求参数,这里request对象的成员变量即对应接口的入参
  53. * 你可以通过官网接口文档或跳转到request对象的定义处查看请求参数的定义
  54. * 基本类型的设置:
  55. * 帮助链接:
  56. * 短信控制台: https://console.cloud.tencent.com/smsv2
  57. * 腾讯云短信小助手: https://cloud.tencent.com/document/product/382/3773#.E6.8A.80.E6.9C.AF.E4.BA.A4.E6.B5.81 */
  58. /* 短信应用ID: 短信SdkAppId在 [短信控制台] 添加应用后生成的实际SdkAppId,示例如1400006666 */
  59. // 应用 ID 可前往 [短信控制台](https://console.cloud.tencent.com/smsv2/app-manage) 查看
  60. req.setSmsSdkAppId(sdkAppId);
  61. /* 短信签名内容: 使用 UTF-8 编码,必须填写已审核通过的签名 */
  62. // 签名信息可前往 [国内短信](https://console.cloud.tencent.com/smsv2/csms-sign) 或 [国际/港澳台短信](https://console.cloud.tencent.com/smsv2/isms-sign) 的签名管理查看
  63. req.setSignName(signName);
  64. /* 模板 ID: 必须填写已审核通过的模板 ID */
  65. // 模板 ID 可前往 [国内短信](https://console.cloud.tencent.com/smsv2/csms-template) 或 [国际/港澳台短信](https://console.cloud.tencent.com/smsv2/isms-template) 的正文模板管理查看
  66. req.setTemplateId(templateId);
  67. /* 模板参数: 模板参数的个数需要与 TemplateId 对应模板的变量个数保持一致,若无模板参数,则设置为空 */
  68. req.setTemplateParamSet(templateParamSet);
  69. /* 下发手机号码,采用 E.164 标准,+[国家或地区码][手机号]
  70. * 示例如:+8613711112222, 其中前面有一个+号 ,86为国家码,13711112222为手机号,最多不要超过200个手机号 */
  71. req.setPhoneNumberSet(phoneNumberSet);
  72. /* 通过 client 对象调用 SendSms 方法发起请求。注意请求方法名与请求对象是对应的
  73. * 返回的 res 是一个 SendSmsResponse 类的实例,与请求对象对应 */
  74. SendSmsResponse res = client.SendSms(req);
  75. //获取响应结果
  76. SendStatus[] sendStatusSet = res.getSendStatusSet();
  77. // 输出json格式的字符串回包
  78. System.out.println(SendSmsResponse.toJsonString(res));
  79. log.info("短信发送返回的响应:"+sendStatusSet);
  80. return true;
  81. } catch (TencentCloudSDKException e) {
  82. log.error("腾讯云短信发送sdk调用失败:"+e.getErrorCode()+","+e.getMessage());
  83. return false;
  84. }
  85. }
  86. }

6、Controller

  1. @RestController
  2. @Api(description = "腾讯云短信服务")
  3. @RequestMapping("/edusms/sms")
  4. @CrossOrigin //跨域
  5. @Slf4j
  6. public class SmsController {
  7. @Autowired
  8. private SmsService smsService;
  9. @Autowired
  10. private RedisTemplate<String, String> redisTemplate;
  11. @ApiOperation("发送短信")
  12. @GetMapping(value = "/send/{phone}")
  13. public R code(@PathVariable String phone) {
  14. String code = redisTemplate.opsForValue().get(phone);
  15. if(!StringUtils.isEmpty(code)) return R.ok();
  16. String Vcode = RandomUtil.getSixBitRandom();
  17. boolean isSend = smsService.send(phone, Vcode);
  18. if(isSend) {
  19. //验证码5分钟失效
  20. redisTemplate.opsForValue().set(phone, Vcode,5,TimeUnit.MINUTES);
  21. return R.ok();
  22. } else {
  23. return R.error().message("发送短信失败");
  24. }
  25. }
  26. }

三、测试

使用Swagger进行测试 http://localhost:8005/swagger-ui.html

控制台输出

Redis中的数据

收到短信

五分钟后Redis中的数据失效 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/511192
推荐阅读
相关标签
  

闽ICP备14008679号