Ofbiz和ftl模板的问题

时间:2011-04-08 10:15:58

标签: ofbiz

我是Ofbiz的新手,我正在尝试这个HelloWorld tutorial

我使用的是Ofbiz 10.04,我得到的错误是:

java.io.FileNotFoundException: Template component://common/webcommon/includes/htmlTemplate.ftl not found.

我搜索了Google,我找到的所有内容都是SVN提交的页面。有人能帮我吗?我的Ofbiz配置有问题吗?

htmlTemplate.ftl在这里:

$ ls -l framework/common/webcommon/includes/htmlTemplate.ftl
-rw-r--r-- 1 pacorg users 4988 2011-04-08 10:25 framework/common/webcommon/includes/htmlTemplate.ftl

非常感谢!

2 个答案:

答案 0 :(得分:7)

好的,我解决了。

controller.xml上,我改变了:

<view-map name="main" type="ftl" page="main.ftl"/>

要:

<view-map name="main" type="ftl" page="component://hello1/webapp/hello1/main.ftl"/>

现在它有效。

我希望这会对某人有所帮助。

答案 1 :(得分:0)

<view-map name="main" type="ftl" page="component://hello1/webapp/hello1/main.ftl"/>

为我们工作。要指定“.ftl”文件,请使用绝对路径。