我使用Spring
+ Freemarker
作为模板发送电子邮件,但每当我尝试发送邮件时,我都会收到消息
freemarker.template.TemplateNotFoundException: Template not found for name "template.ftl".
我的代码如下:
// Configuration - AppConfig.java
@Bean
public freemarker.template.Configuration freeMarkerConfigurationFactory() throws Exception{
FreeMarkerConfigurationFactory fmcf = new FreeMarkerConfigurationFactory();
fmcf.setTemplateLoaderPath("classpath:/META-INF/freemarker/");
fmcf.setPreferFileSystemAccess(false);
fmcf.setDefaultEncoding("UTF-8");
return fmcf.createConfiguration();
}
邮件发件人服务
@Override
@Async
public void sendActivationMail(User user, HttpServletRequest request, String restorePasswordId) throws MailException, MessagingException, GetDataException {
MimeMessage mimeMessage = mailSender.createMimeMessage();
mimeMessage.setRecipient(Message.RecipientType.TO, new InternetAddress(user.getEmail()));
mimeMessage.setSubject(SOFTWARE_NAME + " - Activation");
mimeMessage.setHeader("content-type", "text/html");
Map map = new HashMap();
map.put("link", ServletUtility.getCompleteAdress(request)+"/auth/confirm/"+restorePasswordId);
try{
mimeMessage.setContent(FreeMarkerTemplateUtils.processTemplateIntoString(freeMakerConfiguration.getTemplate("template.ftl"), map),
"text/html; charset=utf-8");
}catch(Exception e){e.printStackTrace();}
mailSender.send(mimeMessage);
}
这是我的目录树:
src
-main
--java
--- it.navium.secutor
----AppConfig.java
--resources
--webapp
---META-INF
----freemarker
-----template.ftl
答案 0 :(得分:2)
执行以下3项操作,你应该好好去:
webapp
目录重命名为WEB-INF
META-INF
目录,意味着您的新树结构将如下所示:-WEB-INF --freemarker ---template.ftl
fmcf.setTemplateLoaderPath("classpath:/freemarker/");
答案 1 :(得分:1)
如果您使用的是春季启动,则模板的位置应为resources/templates
。查看参考文档部分Template Engines:
...
Spring Boot包括对以下内容的自动配置支持 模板引擎:
- FreeMarker
- Groovy
- Thymeleaf
- Velocity(在1.4中弃用)
- 髭
.....
当您使用其中一个模板引擎时,默认值为>配置,您的模板将自动从> src / main / resources / templates 中选取。