4

我正在开发 Java/Spark 框架中的应用程序,并且正在使用 Apache Velocity 模板引擎。我的问题是,每次我更改模板中的任何内容时,我都必须重新加载整个服务器。有没有办法让某种热交换能够在模板上工作而无需重新加载整个服务器?

private final VelocityEngine velocityEngine;

public VelocityTemplateEngine() {
    Properties properties = new Properties();
    properties.setProperty("resource.loader", "class");
    properties.setProperty("class.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader");
    properties.setProperty("class.resource.loader.cache", "true");
    properties.setProperty("class.resource.loader.modificationCheckInterval", "2");
    properties.setProperty("velocimacro.library.autoreload", "true");
    properties.setProperty("velocimacro.permissions.allow.inline.to.replace.global", "true");
    velocityEngine = new org.apache.velocity.app.VelocityEngine(properties);
    //velocityEngine.init(); <-- This bit of code does not change anything when uncommented...
}

解决方法:
resource.loader改成fileclass.resource.loader.class改成org.apache.velocity.runtime.resource.loader.FileResourceLoader解决

properties.setProperty("resource.loader", "file");
properties.setProperty("class.resource.loader.class", "org.apache.velocity.runtime.resource.loader.FileResourceLoader");

properties.setProperty("file.resource.loader.path", root + "/src/main/resources/"); // "root" points to the app folder

properties.setProperty("class.resource.loader.cache", "true"); // Enable cache
properties.setProperty("class.resource.loader.modificationCheckInterval", "2"); // Check for new files every 2 seconds
4

1 回答 1

1

尝试这个 :

  1. 初始化一个速度引擎实例。VelocityEngine x = new VelocityEngine();
  2. 设置属性:

     file.resource.loader.class= FileResourceLoader classname
     file.resource.loader.path=  template location
     file.resource.loader.cache= true
     file.resource.loader.modificationCheckInterval= duration in which you want to reload the templates
    
  3. x.int();

这里重要的一点是,您不会在每次请求时再次初始化速度引擎。在创建速度引擎对象时做这样的事情:

  VelocityEngine x;   // instance variable

  if(x==null)
  {
   x = new VelocityEngine();
   x.init();
   }
  else
  {
   x;
   }
于 2016-02-26T15:42:28.723 回答