我试图了解在哪里存储 java servlet web 应用程序的 mustache 模板以及如何告诉 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 文件位于同一文件夹中。