我正在使用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。我在src / main / webapp / WEB-INF / velocity.properties中有我的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);
答案 0 :(得分:3)
您可以使用VelocityEngineFactoryBean创建VelocityEngine,如下所示:
VelocityEngineFactoryBean vefb = new VelocityEngineFactoryBean();
Map<String, Object> velocityPropertiesMap = new HashMap<String, Object>();
velocityPropertiesMap.put("resource.loader", "class");
velocityPropertiesMap.put("class.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader");
vefb.setVelocityPropertiesMap(velocityPropertiesMap);
velocityEngine = vefb.createVelocityEngine();
然后以下陈述应该起作用
VelocityEngineUtils.mergeTemplateIntoString(velocityEngine, template, model);
答案 1 :(得分:2)
怎么样:
VelocityEngine ve = new VelocityEngine();
ve.setProperty(VelocityEngine.FILE_RESOURCE_LOADER_PATH, "./src/test/resources/");
ve.setProperty(VelocityEngine.FILE_RESOURCE_LOADER_CACHE, false);
ve.init();