我目前正在使用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问题的解决方案,但是它们似乎都没有帮助。
一些解决方案包括设置属性或具有特定的项目结构等。尽管这些似乎都没有解决问题,并导致相同的异常。
您需要将模板放在资源文件夹中。请参阅Spark中的示例,您可以看到maven的pom资源定义。