我是靠谱客的博主 悦耳短靴,最近开发中收集的这篇文章主要介绍参考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占位符解析器写的一个占位符解析工具,用于短信模板,消息模板等地方所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部