概述
/*
* 文件名称: 占位符替换工具类
* 文件描述:
* 创建人: simple_zeng
* 创建时间: 2022/11/4
*/public class PlaceholderReplacer {
private final static String PREFIX = "{";
private final static String SUFFIX = "}";
private final PropertyPlaceholderHelper helper;
public PlaceholderReplacer() {
this(PREFIX, SUFFIX);
}
public PlaceholderReplacer(String prefix, String suffix) {
this.helper = new PropertyPlaceholderHelper(prefix, suffix);
}
public String resolveByNumber(String content, Object... props) {
if (ZYStrUtils.isNull(content)) {
return "";
}
if (null == props || props.length == 0) {
return content;
}
Properties properties = new Properties();
for (int i = 1; i <= props.length; i++) {
properties.put(i + "", props[i - 1]);
}
return helper.replacePlaceholders(content, properties);
}
public String resolveByProperties(String content, Properties properties) {
if (ZYStrUtils.isNull(content)) {
return "";
}
if (null == properties || properties.isEmpty()) {
return content;
}
String resolved = helper.replacePlaceholders(content, properties);
return ZYStrUtils.isNull(resolved) ? null : resolved;
}
}
最后
以上就是悦耳短靴为你收集整理的参考spring占位符解析器写的一个占位符解析工具,用于短信模板,消息模板等地方的全部内容,希望文章能够帮你解决参考spring占位符解析器写的一个占位符解析工具,用于短信模板,消息模板等地方所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复