Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhangquanli/aliyun-sms-spring-boot-starter
基于 Spring Boot 框架,快速集成【阿里云】【短信】服务
https://github.com/zhangquanli/aliyun-sms-spring-boot-starter
aliyun aliyun-sms aliyunsms sms spring-boot
Last synced: about 1 month ago
JSON representation
基于 Spring Boot 框架,快速集成【阿里云】【短信】服务
- Host: GitHub
- URL: https://github.com/zhangquanli/aliyun-sms-spring-boot-starter
- Owner: zhangquanli
- Created: 2019-10-16T14:49:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-16T02:35:19.000Z (about 2 years ago)
- Last Synced: 2023-07-26T22:10:45.299Z (over 1 year ago)
- Topics: aliyun, aliyun-sms, aliyunsms, sms, spring-boot
- Language: Java
- Homepage:
- Size: 49.8 KB
- Stars: 8
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# aliyun-sms-spring-boot-starter
基于 `Spring Boot` 框架,快速集成【阿里云】【短信】## 快速集成
1. 在 `pom.xml` 文件中,引入依赖
```xml
com.github.zhangquanli
aliyun-sms-spring-boot-starter
1.1.0
```
2. 在 `application.properties` 或 `application.yml` 文件中,进行配置
```properties
aliyun.sms.access-key-id=accessKeyId
aliyun.sms.access-key-secret=accessKeySecret
```
```yaml
aliyun:
sms:
access-key-id: accessKeyId
access-key-secret: accessKeySecret
```## 快速开发
1. 在 Spring Boot 项目中,可以直接注入 `AliyunSms` 接口
```java
@Resource
private AliyunSms aliyunSms;
```
2. 使用 `AliyunSms` 接口封装好的方法## 更新日志
### 1.1.0
1. 优化请求参数结构,增加请求参数校验功能
2. 升级此版本,可能会导致原有部分代码报错,请按照报错提示修改### 1.0.2
1. 重构代码实现,原有接口保持不变### 1.0.1
1. 修复【修改短信模板请求参数不正确】的bug### 1.0.0
1. 封装阿里云短信服务相关接口