未找到速度模板

时间:2012-10-05 14:54:00

标签: java spring spring-mvc velocity

我正在尝试在我的Spring MVC网站中使用Velocity来模拟电子邮件。我相信如果Velocity可以找到我想要使用的模板,一切都会好的。我在/WEB-INF/emails/faultNotification.vm有一个模板。在我的代码中,我有这个:

MimeMessageHelper helper = new MimeMessageHelper (message, true);
helper.setTo (toAddresses);
helper.setSubject (subject);
Map<String, Object> model = new HashMap<> ();
model.put ("username", "nikitin");
model.put ("emailAddress", "nik.estep@gmail.com");
helper.setText (VelocityEngineUtils.mergeTemplateIntoString (
                                 m_emailEngine,
                                 "faultNotification.vm",
                                 model), true);
helper.addAttachment (attachmentName,
                      new ByteArrayResource (attachment.toByteArray ()),
                      "application/zip");
m_sender.send (message);

在我的XML中,我有这个:

<bean id="velocityEngine" class="org.springframework.ui.velocity.VelocityEngineFactoryBean">
        <property name="resourceLoaderPath" value="file:/WEB-INF/emails" />
</bean>
<bean id="emailSender" class="com.tarigma.gem.communication.EmailSender">
    <constructor-arg ref="systemSettings" />
    <constructor-arg ref="velocityEngine" />
</bean>

我一直在阅读我能找到的任何帖子,而且我可以告诉它,这应该有效,但是当我去使用它时,Velocity找不到模板(ERROR VelocityEngine - ResourceManager: Unable to find resource 'faultNotification.vm' in any resource loader)。我不想将模板放在/WEB-INF/classes中,因为那不是该文件夹中的内容,必须有一种方法可以使其工作。任何帮助将不胜感激,我昨天失去了所有试图解决这个问题。

1 个答案:

答案 0 :(得分:3)

只要你的战争没有以爆炸形式部署,就没有你的文件网址。 我会尝试配置:

http://velocity.apache.org/tools/devel/javadoc/org/apache/velocity/tools/view/WebappResourceLoader.html

而不是文件资源加载器,并使用完整路径启动战争根源