在我的应用程序中,所有 freemarker 模板都在 /templates/ftl/ 中,因此在应用程序部署期间,我加载了一个类,我调用了一个扩展 FreemarkerManager 并具有方法的类
Configuration configuration = super.createConfiguration(servletContext);
configuration.setDirectoryForTemplateLoading(new File("/templates/ftl/"));
这样,当我需要加载模板文件时,我可以简单地这样做:
ServletContext servletContext = ServletActionContext.getServletContext();
Configuration configFreemarker = (Configuration) servletContext
.getAttribute("freemarker.Configuration");
Template template = configFreemarker.getTemplate("pathToMyTemplate");
仅在一种特定情况下,我需要获取来自完全不同路径(而不是 /templates/ftl/)的模板。
如何在这个特定的时刻声明用于模板加载的第二个目录而不破坏所有调用旧路径的现有代码?我可以同时有 2 个不同的模板加载起点吗?
谢谢