无法找到速度模板资源

新手上路,请多包涵

只是一个基于 Maven 结构的简单速度独立应用程序。这是用 Scala 编写的代码片段,用于呈现模板 helloworld.vm${basedir}/src/main/resources 文件夹中:

 com.ggd543.velocitydemo

import org.apache.velocity.app.VelocityEngine
import org.apache.velocity.VelocityContext
import java.io.StringWriter

/**
 * @author ${user.name}
 */
object App {

  def main(args: Array[String]) {
    //First , get and initialize an engine
    val ve = new VelocityEngine();
    ve.init();

    //Second, get the template
    val resUrl = getClass.getResource("/helloworld.vm")
    val t = ve.getTemplate("helloworld.vm");   // not work
//    val t = ve.getTemplate("/helloworld.vm");  // not work
//    val t = ve.getTemplate(resUrl.toString);  // not work yet
    //Third, create a context and add data
    val context = new VelocityContext();
    context.put("name", "Archer")
    context.put("site", "http://www.baidu.com")
    //Finally , render the template into a StringWriter
    val sw = new StringWriter
    t.merge(context, sw)
    println(sw.toString);
  }

}

什么时候编译运行程序,出现如下错误:

 2012-1-29 14:03:59 org.apache.velocity.runtime.log.JdkLogChute log
严重: ResourceManager : unable to find resource '/helloworld.vm' in any resource loader.
Exception in thread "main" org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource '/helloworld.vm'
    at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:474)
    at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:352)
    at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1533)
    at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1514)
    at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:373)
    at com.ggd543.velocitydemo.App$.main(App.scala:20)
    at com.ggd543.velocitydemo.App.main(App.scala)
    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 com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)

Process finished with exit code 1

原文由 Archer 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 581
1 个回答

好问题——我今天使用 Ecilpse 解决了我的问题:

  1. 将模板放在与源代码相同的文件夹层次结构中(即使将它包含在构建路径中,也不要放在单独的文件夹层次结构中),如下所示:将模板文件放在哪里

  2. 在您的代码中只需使用以下代码行(假设您只想将日期作为数据传递):

    VelocityEngine ve = new VelocityEngine();
   ve.setProperty(RuntimeConstants.RESOURCE_LOADER, "classpath");
   ve.setProperty("classpath.resource.loader.class", ClasspathResourceLoader.class.getName());
   ve.init();
   VelocityContext context = new VelocityContext();
   context.put("date", getMyTimestampFunction());
   Template t = ve.getTemplate( "templates/email_html_new.vm" );
   StringWriter writer = new StringWriter();
   t.merge( context, writer );

看看我们如何首先告诉 VelocityEngine 在类路径中查找。没有这个,它就不知道去哪里找。

原文由 Sameer Technomark 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题