velocity模板渲染引擎

2022/9/4 6:22:58

本文主要是介绍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();

    }
}


这篇关于velocity模板渲染引擎的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程