我在 WEB-INF/templates/standardTemplate.xhtml 中有一个模板
在我的“网页”根目录中,我有一个 index.xhtml,它通过以下方式使用模板
<ui:composition template="/WEB-INF/templates/standardTemplate.xhtml">
以上工作正常。
但是,我还有另一个使用相同模板的页面,但它位于子文件夹“Web Pages”/messageboard/list.xhtml
它使用完全相同的语法/路径:
<ui:composition template="/WEB-INF/templates/standardTemplate.xhtml">
但它找不到模板,只呈现 list.xhtml 的内容(没有模板的内容)。
Faces servlet 映射到“/faces/*”
我究竟做错了什么?尝试了我能想到的所有变体,但我无法获得正确的语法。
谢谢