1

我目前正在使用 Spark 并尝试根据文档通过 Velocity 使用模板。

但是,我遇到了一些错误,谁能提供有关如何成功加载模板的指导?

Aug 22, 2017 2:26:43 PM org.apache.velocity.runtime.log.JdkLogChute log
SEVERE: ResourceManager : unable to find resource 'www/templates/template.html' in any resource loader.
[qtp1951434327-14] ERROR spark.http.matching.GeneralError - 
org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource 'www/templates/template.html'
public class Minimal {
        
    public static void main(String[] args) {
        get("test", (req, res) -> {
            Map<String, Object> model = new HashMap<>();
            return render(model, "www/templates/template.html");
        });
    }
        
    public static String render(Map<String, Object> model, String path) {
        return new VelocityTemplateEngine().render(new ModelAndView(model, path));
    }
}

我已经阅读并尝试了许多 Stack Overflow 问题的解决方案,但在我的情况下,它们似乎都没有帮助。

一些解决方案包括设置属性或具有特定的项目结构等。尽管看起来这些都没有解决问题,并导致相同的异常。

4

1 回答 1

1

您需要将模板放在资源文件夹中。参见spark 中的示例,您可以看到 maven 的pom资源定义。

于 2017-08-22T13:56:06.560 回答