我是靠谱客的博主 悦耳短靴,这篇文章主要介绍参考spring占位符解析器写的一个占位符解析工具,用于短信模板,消息模板等地方,现在分享给大家,希望可以做个参考。

/*
 * 文件名称: 占位符替换工具类
 * 文件描述:
 * 创建人: 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占位符解析器写内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(125)

评论列表共有 0 条评论

立即
投稿
返回
顶部