通常我們做開發(fā)時候會遇到短信發(fā)送郵件發(fā)送之類的需求蜜暑,發(fā)送內(nèi)容往往會由客戶提供一個模板程奠,如果我們是在程序里拼接字符串來搞定這個模板趾盐,很明顯是一種坑隊友的做法。一般將模板放入properties文件中桑寨,使用的時候替換其中的一些變量即可伏尼。
本文我們使用springboot來實現(xiàn)根據(jù)模板發(fā)送短信驗證碼的功能忿檩。
tips:
1、正則表達(dá)式
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;
}
}
解析模板工具類
考慮到公用,將參數(shù)設(shè)置為Map鱼的,即需要替換的變量理盆,正則表達(dá)式替換找到對應(yīng)的key,
我這里key的格式為:{key}凑阶,可根據(jù)自己情況進(jìn)行修改猿规,同時修改正則。
public static String getContent(Map<String, String> 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請求宙橱,返回獲取到的短信內(nèi)容
@RestController
@RequestMapping("demo")
public class DemoController {
@Resource
private MSGConstatns msgConstatns;
@RequestMapping("msg")
public String msgContent(){
String code = "123456";//正式開發(fā)中一般采用隨機數(shù)
Map<String,String> params = new HashMap<>();
params.put("code",code);
return SendCodeUtil.getContent(params,msgConstatns.getSendCodeMsg());
}
}
結(jié)果
期望值:驗證碼為:123456姨俩,請勿泄露給其他人
實際效果: