使用 Spring 配置 Velocity 进行 JUnit 测试时遇到问题
我正在使用 Spring 3.0.5、Maven 3.0.3、JUnit 4 和 Velocity 1.6.2。当我运行 JUnit 测试时,它无法找到我创建的速度模板。我得到的错误是:
2011-07-08 16:16:19,575 [main] ERROR test.com.myco.systems.leadsmonitor.quartz.TestReportQuartzJob - JobExecutionException
org.quartz.JobExecutionException: Exception in execute [See nested exception: org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource 'email_template.vm']
at com.myco.systems.leadsmonitor.quartz.ReportQuartzJob.executeInternal(ReportQuartzJob.java:55)
at org.springframework.scheduling.quartz.QuartzJobBean.execute(QuartzJobBean.java:86)
at test.com.myco.systems.leadsmonitor.quartz.TestReportQuartzJob.testJob(TestReportQuartzJob.java:82)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
我将有问题的模板复制到 src/main/resources 和 src/test/resources 。我的velocity.properties 文件位于src/main/webapp/WEB-INF/velocity.properties 中。其内容是:
# uncomment the next two lines to load templates from the
# classpath (WEB-INF/classes)
resource.loader=class
class.resource.loader.class=org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
# comment the next two lines to stop loading templates from the
# file system
#resource.loader=file
#file.resource.loader.class=org.apache.velocity.runtime.resource.loader.FileResourceLoader
# additional config for file system loader only.. tell Velocity where the root
# directory is for template loading. You can define multiple root directories
# if you wish, I just use the one here. See the text below for a note about
# the ${webapp.root}
#file.resource.loader.path=${webapp.root}/WEB-INF/velocity
# caching should be 'true' in production systems, 'false' is a development
# setting only. Change to 'class.resource.loader.cache=false' for classpath
# loading
file.resource.loader.cache=false
这是我尝试填充模板的方式。 JUnit 测试调用以下代码:
/*
* first, get and initialize an engine
*/
VelocityEngine ve = new VelocityEngine();
ve.init();
/*
* Build the template
*/
final String emailBody = VelocityEngineUtils.mergeTemplateIntoString(ve, "email_template.vm", map);
sendMessage(subject, emailBody);
I'm using Spring 3.0.5, Maven 3.0.3, JUnit 4 and Velocity 1.6.2. When I run my JUnit test, it is not able to locate a velocity template I created. The error I get is:
2011-07-08 16:16:19,575 [main] ERROR test.com.myco.systems.leadsmonitor.quartz.TestReportQuartzJob - JobExecutionException
org.quartz.JobExecutionException: Exception in execute [See nested exception: org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource 'email_template.vm']
at com.myco.systems.leadsmonitor.quartz.ReportQuartzJob.executeInternal(ReportQuartzJob.java:55)
at org.springframework.scheduling.quartz.QuartzJobBean.execute(QuartzJobBean.java:86)
at test.com.myco.systems.leadsmonitor.quartz.TestReportQuartzJob.testJob(TestReportQuartzJob.java:82)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
I copied the template in question to both src/main/resources and src/test/resources . I have my velocity.properties file in src/main/webapp/WEB-INF/velocity.properties. Its contents are:
# uncomment the next two lines to load templates from the
# classpath (WEB-INF/classes)
resource.loader=class
class.resource.loader.class=org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
# comment the next two lines to stop loading templates from the
# file system
#resource.loader=file
#file.resource.loader.class=org.apache.velocity.runtime.resource.loader.FileResourceLoader
# additional config for file system loader only.. tell Velocity where the root
# directory is for template loading. You can define multiple root directories
# if you wish, I just use the one here. See the text below for a note about
# the ${webapp.root}
#file.resource.loader.path=${webapp.root}/WEB-INF/velocity
# caching should be 'true' in production systems, 'false' is a development
# setting only. Change to 'class.resource.loader.cache=false' for classpath
# loading
file.resource.loader.cache=false
Here is how I'm trying to populate my template. The JUnit test invokes this code:
/*
* first, get and initialize an engine
*/
VelocityEngine ve = new VelocityEngine();
ve.init();
/*
* Build the template
*/
final String emailBody = VelocityEngineUtils.mergeTemplateIntoString(ve, "email_template.vm", map);
sendMessage(subject, emailBody);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
怎么样:
What about:
您可以使用 VelocityEngineFactoryBean 创建 VelocityEngine,如下所示:
那么以下语句应该有效
You can create a VelocityEngine using the VelocityEngineFactoryBean as follows:
Then the following statement should work