我想知道在哪裏存儲我的Java小服務程序web應用程序的小鬍子模板以及如何告訴servlet模板所在的位置。如何設置文件路徑等?哪裏可以找到,以及如何找到Java servlet中的小鬍子模板
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
MustacheFactory mf = new DefaultMustacheFactory();
Mustache fromFile = mf.compile("template.mustache");
Example e = new Example(); e.variable = "this is some value!";
fromFile.execute(response.getWriter(), e);
}
這是我的代碼。我的模板與我的servlet文件位於同一個文件夾中。
juhu,正是我需要的:) +1 – elrado