在Freemarker中,可以通過配置freemarker.template.Configuration
對象來設置模板路徑。以下是一種常見的設置方式:
Configuration
對象:import freemarker.template.Configuration;
Configuration cfg = new Configuration(Configuration.VERSION_2_3_31);
// 設置模板文件夾路徑
cfg.setDirectoryForTemplateLoading(new File("path/to/templates"));
// 或者,設置類路徑下的模板文件夾路徑
cfg.setClassForTemplateLoading(getClass(), "/templates");
Template template = cfg.getTemplate("templateName.ftl");
在上述代碼中,path/to/templates
是模板文件夾的絕對路徑,而/templates
是在類路徑下的相對路徑。
注意:在設置模板路徑時需要注意模板文件的位置和訪問權限。