时间:2021-05-19
引入腾讯云依赖
<!--腾讯云核心API--> <dependency> <groupId>com.tencentcloudapi</groupId> <artifactId>tencentcloud-sdk-java</artifactId> <version>3.1.111</version> </dependency> <dependency> <groupId>com.github.qcloudsms</groupId> <artifactId>qcloudsms</artifactId> <version>1.0.6</version> </dependency>其次配置属性类
import lombok.Data;import org.springframework.boot.context.properties.ConfigurationProperties;/** * 腾讯云发送短信 配置信息类 */@Data@ConfigurationProperties(prefix = "tanhua.txsms") // 读取application中的tanhua.sms的属性public class TxProperties { // AppId 1400开头的 private int AppId; // 短信应用SDK AppKey private String AppKey; // 短信模板ID private int TemplateId; // 签名 private String signName;}其次配置工具类
package com.He.commons.templates;import com.He.commons.properties.TxProperties;import com.alibaba.fastjson.JSONException;import com.github.qcloudsms.SmsSingleSender;import com.github.qcloudsms.SmsSingleSenderResult;import com.github.qcloudsms.httpclient.HTTPException;import lombok.extern.slf4j.Slf4j;import java.io.IOException;/** * 腾讯云发送短信模板对象,封装了发送短信的api */@Slf4jpublic class TxSmsTemplate { private TxProperties txProperties; public TxSmsTemplate(TxProperties txProperties) { this.txProperties = txProperties; } /** * 指定模板ID发送短信 * * @param number 用户手机号 * @return OK 成功 null 失败 */ public String sendMesModel(String number,String value) { try { String[] params = {value};//{参数} SmsSingleSender ssender = new SmsSingleSender(txProperties.getAppId(), txProperties.getAppKey()); SmsSingleSenderResult result = ssender.sendWithParam("86", number, txProperties.getTemplateId(), params, txProperties.getSignName(), "", ""); // 签名参数未提供或者为空时,会使用默认签名发送短信 System.out.print(result); return result.errMsg; //OK } catch (HTTPException e) { // HTTP响应码错误 log.info("短信发送失败,HTTP响应码错误!!!!!!!!!!!!"); // e.printStackTrace(); } catch (JSONException e) { // json解析错误 log.info("短信发送失败,json解析错误!!!!!!!!!!!!"); //e.printStackTrace(); } catch (IOException e) { // 网络IO错误 log.info("短信发送失败,网络IO错误!!!!!!!!!!!!"); // e.printStackTrace(); } return null; }}注册腾讯云短信到容器中
/** * 短信模块自动装配类 * 根据springboot自动装备原理 * 将smsTemplate对象注入到容器中 * 要配置META-INF/spring.factories */@Configuration@EnableConfigurationProperties({TxProperties.class})public class CommonsAutoConfiguration { /** * 注册txSmsTemplate到容器中 * @param txProperties * @return */ @Bean public TxSmsTemplate txSmsTemplate(TxProperties txProperties) { return new TxSmsTemplate(txProperties); }}在resources中配置启动自动装配类
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\com.He.commons.CommonsAutoConfiguration最后测试一下
import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.test.context.junit4.SpringRunner;@SpringBootTest@RunWith(SpringRunner.class)public class TXTest { @Autowired private TxSmsTemplate txSmsTemplate; @Test public void TestTxsms(){ String result = txSmsTemplate.sendMesModel("1511938****", "666666");//第一个参数为手机号,第二个发送短信的内容 System.out.println(result); // result等于OK 就表示发送成功 }}返回OK则表示发送成功
到此这篇关于springboot整合腾讯云短信开箱即用的文章就介绍到这了,更多相关springboot整合腾讯云短信内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
我们都知道可以使用SpringBoot快速的开发基于Spring框架的项目。由于围绕SpringBoot存在很多开箱即用的Starter依赖,使得我们在开发业务
springboot为我们自动配置了一个开箱即用的DispatcherServlet,映射路径为‘/',但是如果项目中有多个服务,为了对不同服务进行不同的配置管
简介由于项目在注册、登录、找回密码时需要发送短信验证的功能,我们使用腾讯云短信做。为什么要用腾讯云短信呢?因为注册就送100条免费短信的额度。实现注册腾讯云注册
背景SpringBoot因其提供了各种开箱即用的插件,使得它成为了当今最为主流的JavaWeb开发框架之一。Mybatis是一个十分轻量好用的ORM框架。Red
这篇文章主要介绍了springboot2.1.7整合thymeleaf代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要