Velocity模板元数据

时间:2018-03-12 15:32:31

标签: java apache metadata velocity

Apache Velocity是否包含向模板添加元数据的机制?

我尝试在模板中添加一些额外信息(例如,类型和描述性名称),然后按类型以编程方式对模板进行读取,并使用描述性名称在UI上列出模板。 / p>

我尝试使用文字#[[...]]#块(并解析它们)和#set指令,但两者都有问题。它们是hacky(需要对模板进行一些解析)并且远非优雅。

1 个答案:

答案 0 :(得分:0)

嗯,我不知道有什么内置的东西可以做到这一点。为了避免在第一次传递时处理整个模板,一个技巧是在该传递期间有条件地抛出异常(MetadataFinished以下),但不是正常执行。

显然,这仍然需要预先编译整个模板,尽管这应该在执行时有用。

E.g。

import org.apache.commons.io.output.NullWriter;

public class Metadata {

    private Map<String, Template> byKey = new LinkedHashMap<>();
    private Template currentTemplate;

    /** Callback from .vm */
    public void set(String key) throws MetadataFinished {
        // Only do this in addTemplate()
        if (currentTemplate != null) {
            byKey.put(key, currentTemplate);
            throw new MetadataFinished();
        }
    }

    public void addTemplate(Template template) {
        currentTemplate = template;
        try {
            Context context = new VelocityContext();
            context.put("metadata", this);
            template.merge(context, new NullWriter());
        } catch (MetadataFinished ex) {
            // Ignored
        } finally {
            currentTemplate = null;
        }
    }

    public void execute(String key) {
        Template template = byKey.get(key);

        Context context = new VelocityContext();
        PrintWriter pw = new PrintWriter(System.out);
        template.merge(context, pw);
        pw.flush();
    }

    // Extends Error to avoid Velocity adding a wrapping MethodInvocationException
    private static class MetadataFinished extends Error {
    }

    public static void main(String[] args) {
        Metadata metadata = new Metadata();

        VelocityEngine engine = new VelocityEngine();
        engine.setProperty("file.resource.loader.path", "/temp");
        engine.init();

        String[] fileNames = { "one.vm", "two.vm" };
        for (String fileName : fileNames) {
            Template template = engine.getTemplate(fileName);
            metadata.addTemplate(template);
        }

        metadata.execute("vm1");
        metadata.execute("vm2");
    }
}

然后在one.vm

$!metadata.set("vm1")##
-----------
This is VM1
-----------

##有点难看 - 它只是停止输出一个空白行。如果可读性很重要,可以通过以下方式使其更加整洁:

#metadata("vm2")
-----------
This is VM2
-----------

可以在全球VM_global_library.vm

中定义该宏
#macro( metadata $key )
$!metadata.set($key)#end

仅供参考,输出符合预期:

-----------
This is VM1
-----------
-----------
This is VM2
-----------