使用StringTemplate中的参数调用Java函数?

时间:2012-05-05 01:04:45

标签: java stringtemplate stringtemplate-4

StringTemplate允许程序员通过getter(一个没有参数的函数)获取数据。

我想知道是否可以使用String Template中的参数调用Java函数?

1 个答案:

答案 0 :(得分:0)

滥用字典有一种解决方法。以下是实现“功能”以限制列表中项目计数的示例(issue on github)。

在你的代码中添加词典:

group.defineDictionary("max", new MaxListItemsLimiter());

用法(在此示例中,数组中的第一项是最大项目数):

<max.(["50",myObject.items]):{msg|<msg.something>}>

final class MaxListItemsLimiter extends AbstractMap<String, Object> {

    @Override
    public Object get(Object key) {
        List items = (List) key;
        if (!items.isEmpty()) {
            //First item is max. count
            Integer limit = NumberUtils.toInt(items.get(0).toString(), -1); //use Integer.parseInt
            if (limit != -1) {
                return items.subList(1, Math.min(items.size(), limit + 1));
            } else {
                throw new AssertionError("First parameter in max must be number");
            }
        } else {
            return super.get(key);
        }
    }

    @Override
    public Set<Map.Entry<String, Object>> entrySet() {
        return Collections.emptySet();
    }

    @Override
    public boolean containsKey(Object key) {
        if (key instanceof List) {
            return true;
        } else {
            throw new AssertionError("You can use max only on Lists.");
        }
    }
}