Freemarker 加载模板目录的方法

Freemarker提供了3种加载模板目录的方法,使用Configuration类加载模板

3种方法分别是:

public void setClassForTemplateLoading(Class clazz, String pathPrefix);

public void setDirectoryForTemplateLoading(File dir) throws IOException;

public void setServletContextForTemplateLoading(Object servletContext, String path);

第一种示例(适合加载Jar包内的资源):

Configuration cfg = new Configuration();
cfg.setClassForTemplateLoading(FreemarkerUtil.class, "/template");
cfg.getTemplate("Base.ftl");

第二种示例(适合加载文件路径):

Configuration cfg = new Configuration();
cfg.setDirectoryForTemplateLoading(new File("/home/user/template"));
cfg.getTemplate("Base.ftl");

这样就获得了/home/user/template/Base.ftl这个模板文件。

也适合加载Runtime时的模板路径

Configuration cfg = new Configuration();
// 指定FreeMarker模板文件的位置
try {
	cfg.setDirectoryForTemplateLoading(new File(CustomerGenerator.class.getProtectionDomain().getCodeSource().getLocation().getPath() + "com/boot/admin/generator/templates"));
	cfg.getTemplate("Base.ftl");
} catch (Exception e) {
	// TODO Auto-generated catch block
	e.printStackTrace();
}
第三种示例( 基于WebRoot下的):

Configuration cfg = new Configuration();
// 指定FreeMarker模板文件的位置
try {
	cfg.setServletContextForTemplateLoading(getServletContext(), "/ftl");就是 /WebRoot/ftl目录
	cfg.getTemplate("Base.ftl");
} catch (Exception e) {
	// TODO Auto-generated catch block
	e.printStackTrace();
}




评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值