0


SpringBoot实战系列之发送短信验证码

大家好,我是工藤学编程 🦉大二在读作业侠系列最新文章😉Java实现聊天程序SpringBoot实战系列🐷SpringBoot实战系列之发送短信验证码一起刷算法与数据结构最新文章🐷一起刷算法与数据结构-树篇1环境搭建大集合环境搭建大集合(持续更新)

1.短信验证码平台选择考虑点

  • 各个类型短信价格
  • 短信到达率、到达时间
  • 短信内容变量灵活,⽅便⽀持多场景
  • ⽀持多种推⼴内容的短信发放,例如业务推⼴、新产品宣讲、
  • 会员关怀等内容的短信
  • 多维度数据统计-查看请求量、发送成功量、失败量、等

2.短信平台

注意

由于申请接入阿里云,腾讯云需要企业认证,所以我们使用第三方厂商,复制上方链接浏览器打开即可

进入之后,点击立即购买,不用选择什么,直接支付即可,大家看自己需求选择即可,自己测试着玩,三元即可
在这里插入图片描述
购买好之后会有对应api文档,当然包括一些类似密钥的东西
在这里插入图片描述购买之后,api文档过一会就出现
在这里插入图片描述
代码实战:
依赖说明,能够跑起来的Springboot项目就行
在对应application.yml中添加加如下内容:

sms:
  app-code: ${你自己的appcode}
  template-id: M72CB42894

template-id就是你短信发送的模板id,这个是官方默认的,想自己定义需要申请

使用restTemplate用于第三方接口调用
对应封装:

@ConfigurationpublicclassRestTemplateConfig{@BeanpublicRestTemplaterestTemplate(ClientHttpRequestFactory requestFactory){returnnewRestTemplate(requestFactory);}@BeanpublicClientHttpRequestFactorysimpleClientHttpRequestFactory(){SimpleClientHttpRequestFactory factory =newSimpleClientHttpRequestFactory();
        factory.setReadTimeout(10000);
        factory.setConnectTimeout(10000);return factory;}}

然后封装smsConfig,使用了Lombok,大家没有对应依赖的生成对应setter,getter方法即可

@ConfigurationProperties(prefix ="sms")@Configuration@DatapublicclassSmsConfig{privateString appCode;privateString templateId;}

封装发送业务,信息打印使用了slf4j,大家没有对应依赖换成sout即可:

@Component@Slf4jpublicclassSmsComponent{privatestaticfinalString URL_TEMPLATE ="https://jmsms.market.alicloudapi.com/sms/send?mobile=%s&templateId=%s&value=%s";@AutowiredprivateRestTemplate restTemplate;@AutowiredprivateSmsConfig smsConfig;publicvoidsend(Stringto,String templateId,String value){String url =String.format(URL_TEMPLATE,to, templateId, value);HttpHeaders headers =newHttpHeaders();//最后在header中的格式(中间是英⽂空格)为
        headers.set("Authorization","APPCODE "+ smsConfig.getAppCode());HttpEntity<String> entity =newHttpEntity<>(headers);ResponseEntity<String> response = restTemplate.exchange(url,HttpMethod.POST, entity,String.class);
        log.info("url={},body={}", url, response.getBody());if(response.getStatusCode()==HttpStatus.OK){
            log.info("发送短信成功,响应信息:{}", response.getBody());}else{
            log.error("发送短信失败,响应信息:{}", response.getBody());}}}

在对应单元测试中编写测试方法:

@RunWith(SpringRunner.class)@SpringBootTest(classes =AccountApplication.class)@Slf4jpublicclassSmsTest{@AutowiredprivateSmsConfig smsConfig;@AutowiredprivateSmsComponent smsComponent;@TestpublicvoidtestSmsSend(){
        smsComponent.send("110",smsConfig.getTemplateId(),"54688");}}

运行,发送成功
在这里插入图片描述
我的手机也收到了消息:
在这里插入图片描述


本文转载自: https://blog.csdn.net/chandfy/article/details/125921257
版权归原作者 工藤学编程 所有, 如有侵权,请联系我们删除。

“SpringBoot实战系列之发送短信验证码”的评论:

还没有评论