在 java 中加载 freemarker 模板时出现 FileNotFoundException
Posted
技术标签:
【中文标题】在 java 中加载 freemarker 模板时出现 FileNotFoundException【英文标题】:FileNotFoundException when loading freemarker template in java 【发布时间】:2013-01-22 20:44:45 【问题描述】:我在加载 freemarker 模板时遇到文件未找到异常,即使该模板实际存在于路径中。
更新:这是作为网络服务运行的。它将根据搜索查询向客户端返回一个 xml。当我从另一个 java 程序(从静态主程序)调用模板时,模板加载成功。但是当客户端请求 xml 时,会发生 FileNotFoundException。
操作系统:Windows 7 文件绝对路径:C:/Users/Jay/workspace/WebService/templates/
这是我的代码:
private String templatizeQuestion(QuestionResponse qr) throws Exception
SimpleHash context = new SimpleHash();
Configuration config = new Configuration();
StringWriter out = new StringWriter();
Template _template = null;
if(condition1)
_template = config.getTemplate("/templates/fibplain.xml");
else if(condition2)
_template = config.getTemplate("/templates/mcq.xml");
context.put("questionResponse", qr);
_template.process(context, out);
return out.toString();
完整的错误堆栈:
java.io.FileNotFoundException: Template /templates/fibplain.xml not found.
at freemarker.template.Configuration.getTemplate(Configuration.java:495)
at freemarker.template.Configuration.getTemplate(Configuration.java:458)
at com.hm.newAge.services.Curriculum.templatizeQuestion(Curriculum.java:251)
at com.hm.newAge.services.Curriculum.processQuestion(Curriculum.java:228)
at com.hm.newAge.services.Curriculum.processQuestionList(Curriculum.java:210)
at com.hm.newAge.services.Curriculum.getTest(Curriculum.java:122)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:212)
at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117)
at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:181)
at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172)
at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:146)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:861)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:606)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
at java.lang.Thread.run(Unknown Source)
【问题讨论】:
文件的绝对路径是什么?哪个操作系统? 请检查我在问题中的更新。 【参考方案1】:FreeMarker 模板路径由 TemplateLoader
对象解析,您应该在 Configuration
对象中指定该对象。您指定为模板路径的路径由TemplateLoader
解释,并且通常相对于某种基目录(即使它以/
开头),因此也称为模板根目录。在您的示例中,您没有指定任何TemplateLoader
,因此您使用的是默认的TemplateLoader
,它仅用于向后兼容,几乎没用(而且也很危险)。所以,做这样的事情:
config.setDirectoryForTemplateLoading(new File(
"C:/Users/Jay/workspace/WebService/templates"));
然后:
config.getTemplate("fibplain.xml");
请注意,/template
前缀现在不存在,因为模板路径是相对于 C:/Users/Jay/workspace/WebService/templates
的。 (这也意味着模板不能使用../
-s 退出它,这对安全性很重要。)
除了从真实目录加载之外,您还可以从SerlvetContext
、“类路径”等加载模板。这完全取决于您选择的TemplateLoader
。
另请参阅:http://freemarker.org/docs/pgui_config_templateloading.html
更新:如果你得到的是 FileNotFoundException
而不是 TemplateNotFoundException
,是时候将 FreeMarker 升级到至少 2.3.22。它还提供了更好的错误消息,例如,如果您犯了使用默认 TemplateLoader
的典型错误,它会在错误消息中告诉您这一点。减少浪费的开发人员时间。
【讨论】:
我解决了我面临的问题。当我将应用程序作为 eclipse 的axis2 webservice 运行时,它认为eclipse 安装文件夹是模板根文件夹而不是项目根文件夹。所以这造成了所有的混乱。但是你说的有道理。有没有办法在运行时或项目设置中的某处更改应用程序的根目录? 正如我所说,您通过在Configuration
中设置TemplateLoader
来设置模板根目录,因为定义模板根目录的是TemplateLoader
。 setDirectoryForTemplateLoading
只是一种方便的方法,通用形式是confg.setTemplateLoader(new WhateverTemplateLoader(...))
。您应该在设置Configuration
对象的任何位置设置它。通常,您在应用程序生命周期中只执行一次,然后所有线程共享相同的Configuration
对象。
嘿,谢谢老兄。我尝试了config.setDirectoryForTemplateLoading
,当我运行网络服务时它运行良好。 :)
***.com/questions/3019424/… 为我工作。
谢谢。我正在失去理智,因为我可以 vim 文件,但我得到一个文件未找到异常......这为我修复了它!【参考方案2】:
你可以这样解决这个问题。
public class HelloWorldFreeMarkerStyle
public static void main(String[] args)
Configuration configuration = new Configuration();
configuration.setClassForTemplateLoading(HelloWorldFreeMarkerStyle.class, "/");
FileTemplateLoader templateLoader = new FileTemplateLoader(new File("resources"));
configuration.setTemplateLoader(templateLoader);
Template helloTemp= configuration.getTemplate("hello.ftl");
StringWriter writer = new StringWriter();
Map<String,Object> helloMap = new HashMap<String,Object>();
helloMap.put("name","gokhan");
helloTemp.process(helloMap,writer);
System.out.println(writer);
【讨论】:
为什么在FileTemplateLoader templateLoader
中单独给出路径有效,而在configuration.setClassForTemplateLoading
中给出路径却不行?【参考方案3】:
实际上,您应该为将要放置模板的目录指定绝对路径(而不是相对路径),请参阅 FreeMaker.Configuration:
setDirectoryForTemplateLoading(java.io.File dir)
Sets the file system directory from which to load templates.
Note that FreeMarker can load templates from non-file-system sources too. See setTemplateLoader(TemplateLoader) from more details.
例如,这是从 src/test/resources/freemarker 获取模板的方法:
private String final PATH = "src/test/resources/freemarker"
// getting singleton of Configuration
configuration.setDirectoryForTemplateLoading(new File(PATH))
// surrounded by try/catch
【讨论】:
【参考方案4】:Java VM 无法在指定位置找到您的文件/templates/fibplain.xml
。这是an absolute path
,您很可能会与relative path
混淆。要更正此问题,请正确使用完整(即绝对)路径,例如 /home/jaykumar/templates/fibplan.xml($TEMPLATE_HOME/fibplan.xml)
。其他可能性是,如果您确实有 /templates/ 这样的位置,您可能没有将 fibplain.xml 放在该位置。对我来说,只有这两个是最合理的原因。我认为它是 linux 发行版之一,因为分隔符是 /
【讨论】:
我遇到了你之前所说的问题。我解决了。我已通过更新详细说明了我的问题中的新问题。请评论你的观点【参考方案5】:这项工作就像一个魅力,
package tech.service.common;
import freemarker.cache.FileTemplateLoader;
import freemarker.cache.TemplateLoader;
import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;
import freemarker.template.Version;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;
import org.springframework.stereotype.Service;
import org.springframework.ui.freemarker.FreeMarkerTemplateUtils;
import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;
import java.io.File;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
@Service
public class MailingService
@Autowired
private JavaMailSender sender;
public MailResponseDto sendEmail(String mailTo,String Subject)
MailResponseDto response = new MailResponseDto();
MimeMessage message = sender.createMimeMessage();
Configuration config = new Configuration(new Version(2, 3, 0));
try
// set mediaType
MimeMessageHelper helper = new MimeMessageHelper(message, MimeMessageHelper.MULTIPART_MODE_MIXED_RELATED,
StandardCharsets.UTF_8.name());
TemplateLoader templateLoader = new FileTemplateLoader(new File("src/main/resources/template"));
config.setTemplateLoader(templateLoader);
// add attachment
helper.addAttachment("logo.png", new File("src/main/resources/static/images/spring.png"));
Template t = config.getTemplate("email_template_password.ftl");
Map<String, Object> model = new HashMap<>();
model.put("Name", "ELAMMARI Soufiane");
model.put("location", "Casablanca,Morocco");
String html = FreeMarkerTemplateUtils.processTemplateIntoString(t, model);
helper.setTo("example@gmail.com");
helper.setText(html, true);
helper.setSubject(Subject);
sender.send(message);
response.setMessage("mail send to : " + mailTo);
response.setStatus(Boolean.TRUE);
catch (MessagingException | IOException | TemplateException e)
response.setMessage("Mail Sending failure : "+e.getMessage());
response.setStatus(Boolean.FALSE);
return response;
【讨论】:
以上是关于在 java 中加载 freemarker 模板时出现 FileNotFoundException的主要内容,如果未能解决你的问题,请参考以下文章
在 Freemarker 模板中加载模板而不为模板加载设置目录或类
在 Spring Boot / FreeMarker 中加载图像时出现问题