微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

velocity模板渲染引擎

<dependency>
  <groupId>org.apache.veLocity</groupId>
  <artifactId>veLocity-engine-core</artifactId>
  <version>使用人数最多的版本</version>
</dependency>
import org.apache.veLocity.Template;
import org.apache.veLocity.VeLocityContext;
import org.apache.veLocity.app.VeLocityEngine;
import org.apache.veLocity.context.Context;

import java.io.FileWriter;
import java.io.IOException;

/**
 * veLocity 模板引擎
 *
 * @author JHL
 */
public class T {
    public static void main(String[] args) throws IOException {
        // veLocity资源模板加载问题:https://blog.csdn.net/sivasoft/article/details/83233393
        VeLocityEngine ve = new VeLocityEngine();
        ve.setProperty("resource.loader", "class");
        ve.setProperty("class.resource.loader.class","org.apache.veLocity.runtime.resource.loader.ClassPathResourceLoader");
        ve.init();

        Template template = ve.getTemplate("templates/test.vm","UTF-8");

        // veLocity模板渲染指令:https://blog.csdn.net/qq_42224683/article/details/110673499
        Context context = new VeLocityContext();
        context.put("foo", "bar");
        context.put("customer", "dsads");

        FileWriter fileWriter = new FileWriter("C:\\Users\\ThinkPad\\Desktop\\ffmpeg-5.1-full_build\\test" +
                ".txt");

        template.merge(context, fileWriter);
        fileWriter.close();

    }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐