2016-09-28 122 views
0

我目前使用spark-java來動態生成網站。帶火花的速度模板引擎

我的文件夾結構如下:

my folder structure

FATAL: ResourceManager : unable to find resource 'test.vm' in any resource loader. 

當試圖但是加載頁面,我得到這個錯誤。我的代碼如下所示:

get("/helloworld", (req, res) -> { 
    Map<String, Object> model = new HashMap<String, Object>(); 
    model.put("test", "Hey there :)"); 
    return new ModelAndView(model, "test.vm"); 
}, new VelocityTemplateEngine()); 

沒有Velocity的頁面加載沒有問題。任何人都可以幫我設置正確嗎?

回答

1

您的速度模板文件(test.vm)應位於目錄src/main/resources中。

您的資源文件夾此刻不在classpath上,因此無法找到這些文件。