我正在使用 Liferay 开发我的应用程序,并希望使用 freemarker 开发模板。
我只是在测试freemarker。当我部署我的应用程序时,它说找不到模板。我知道模板文件应该在 src 文件夹中。所以我在 docroot.WEB-INF/src 文件夹中创建了 helloworld.ftl 并在代码中我尝试使用语句访问它
Configuration cfg = new Configuration();
Template template = cfg.getTemplate("src/helloworld.ftl");
错误如下:
java.io.FileNotFoundException: Template src/helloworld.ftl not found.
我应该如何给出我的文件夹路径?