博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring boot 整合 云之讯 demo
阅读量:5109 次
发布时间:2019-06-13

本文共 1639 字,大约阅读时间需要 5 分钟。

---恢复内容开始---

package com.zhourong.controller;import org.apache.commons.lang3.RandomStringUtils;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.http.ResponseEntity;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.ResponseBody;import org.springframework.web.bind.annotation.RestController;import org.springframework.web.client.RestTemplate;import com.zhourong.dto.SmsDto;import com.zhourong.utils.Result;import com.zhourong.vo.SmsVo;@RestController@RequestMapping("/sms/")public class SmsController {    private final String appid = "6d5ea3e7964341058f0cd1b31799eb27";    private final String sid = "b3cf37114ad3e0f61d66d5317306af70";    private final String token = "1a1e13a677e25df8ceadb8dd100d2fd3";    private final String templateid = "413092";        @Autowired    private RestTemplate restTemplate;        @RequestMapping("/send")    @ResponseBody    public Result
send() { String url = "https://open.ucpaas.com/ol/sms/sendsms"; SmsDto sms = new SmsDto(); String code = RandomStringUtils.randomNumeric(4); sms.setAppid(appid); sms.setMobile("18821962348"); sms.setSid(sid); sms.setTemplateid(templateid); sms.setToken(token); sms.setParam(code); ResponseEntity
smsVo = restTemplate.postForEntity(url,sms, SmsVo.class); return new Result(200,"发送成功",smsVo); }} 项目结构:

 

 

直接用。

git:

 

---恢复内容结束---

posted on
2018-12-21 22:55 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/1-Admin/p/10159423.html

你可能感兴趣的文章
Swift3.0服务端开发(三) Mustache页面模板与日志记录
查看>>
【转】 FPGA设计的四种常用思想与技巧
查看>>
EntityFrameWork 实现实体类和DBContext分离在不同类库
查看>>
新手算法学习之路----二叉树(在一个二叉查找树中插入一个节点)
查看>>
autopep8
查看>>
GIT在Linux上的安装和使用简介
查看>>
基于C#编程语言的Mysql常用操作
查看>>
s3c2440实验---定时器
查看>>
MyEclipse10安装SVN插件
查看>>
[转]: 视图和表的区别和联系
查看>>
Regular Experssion
查看>>
图论例题1——NOIP2015信息传递
查看>>
uCOS-II中的任务切换-图解多种任务调度时机与问题
查看>>
CocoaPods的安装和使用那些事(Xcode 7.2,iOS 9.2,Swift)
查看>>
Android 官方新手指导教程
查看>>
幸运转盘v1.0 【附视频】我的Android原创处女作,请支持!
查看>>
UseIIS
查看>>
集合体系
查看>>
vi命令提示:Terminal too wide
查看>>
引用 移植Linux到s3c2410上
查看>>