freemarker加载模板路径怎么设置

1628
2024/1/2 19:43:56
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在Freemarker中,可以通过配置freemarker.template.Configuration对象来设置模板路径。以下是一种常见的设置方式:

  1. 创建Configuration对象:
import freemarker.template.Configuration;

Configuration cfg = new Configuration(Configuration.VERSION_2_3_31);
  1. 设置模板路径:
// 设置模板文件夹路径
cfg.setDirectoryForTemplateLoading(new File("path/to/templates"));

// 或者,设置类路径下的模板文件夹路径
cfg.setClassForTemplateLoading(getClass(), "/templates");
  1. 获取模板文件:
Template template = cfg.getTemplate("templateName.ftl");

在上述代码中,path/to/templates是模板文件夹的绝对路径,而/templates是在类路径下的相对路径。

注意:在设置模板路径时需要注意模板文件的位置和访问权限。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: freemarker使用的流程是什么