快上网专注成都网站设计 成都网站制作 成都网站建设
成都网站建设公司服务热线:028-86922220

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

springboot使用properties定义短信模板的方法教程

前言

成都创新互联专注于方城网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供方城营销型网站建设,方城网站制作、方城网页设计、方城网站官网定制、重庆小程序开发公司服务,打造方城网络公司原创品牌,更为您提供方城网站排名全网营销落地服务。

通常我们做开发时候会遇到短信发送邮件发送之类的需求,发送内容往往会由客户提供一个模板,如果我们是在程序里拼接字符串来搞定这个模板,很明显是一种坑队友的做法。一般将模板放入properties文件中,使用的时候替换其中的一些变量即可。

本文我们使用springboot来实现根据模板发送短信验证码的功能,下面话不多说了,来一起看看详细的介绍吧。

tips:

1、正则表达式

2、springboot读取properties文件

模板定义

将需要定义的短信模板都定义在msg.properties文件,目录同application.properties,注意其中的【[code]】即为要替换的变量。

tem.msg.verify.code=验证码为:[code],请勿泄露给其他人。

读取properties

定义组件MSGConstants,指定需要加载的properties文件,用来读取定义的模板,使用spring的@Value注解

@PropertySource("classpath:msg.properties")
@Component
public class MSGConstatns {
 @Value("${tem.msg.verify.code}")
 private String sendCodeMsg;

 public String getSendCodeMsg() {
  return sendCodeMsg;
 }
 public void setSendCodeMsg(String sendCodeMsg) {
  this.sendCodeMsg = sendCodeMsg;
 }
}

解析模板工具类

考虑到公用,将参数设置为Map,即需要替换的变量,正则表达式替换找到对应的key,我这里key的格式为:{key},可根据自己情况进行修改,同时修改正则。

 public static String getContent(Map params,String content) {
  String reg = "\\{\\w*}";//
  Pattern pattern = Pattern.compile(reg);
  Matcher matcher = pattern.matcher(content);
  while (matcher.find()) {
   String group = matcher.group();//
   String key = group.substring(1, group.length() - 1);
   if (!params.containsKey(key))
    throw new NormalException("未找到需要替换的key:" + key);
   content = content.replace(group, params.get(key));
  }
  return content;
 }

测试

一个很简单的ajax请求,返回获取到的短信内容

@RestController
@RequestMapping("demo")
public class DemoController {
 @Resource
 private MSGConstatns msgConstatns;
 @RequestMapping("msg")
 public String msgContent(){
  String code = "123456";//正式开发中一般采用随机数
  Map params = new HashMap<>();
  params.put("code",code);
  return SendCodeUtil.getContent(params,msgConstatns.getSendCodeMsg());
 }
}

结果

期望值:验证码为:123456,请勿泄露给其他人

实际效果:

spring boot使用properties定义短信模板的方法教程

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对创新互联的支持。


新闻标题:springboot使用properties定义短信模板的方法教程
URL地址:http://6mz.cn/article/jghgso.html

其他资讯