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();

    }
}
posted @     阅读(57)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
点击右上角即可分享
微信分享提示