JSF2从子文件夹* .xhtml文件导航到* .xhtml文件

时间:2013-08-01 07:39:40

标签: jsf-2 navigation

有什么方法可以实现从文件“file1.xhtml”导航到位于父文件夹中的另一个文件“file2.xhtml”,根本不使用“faces-config.xml”导航。

ProjectName
+---+
    WebContent
    +---+
    |   subfolder
    |   +---+
    |       file1.xhtml
    +---+
        file2.xhtml

从file2.xhtml导航到file1.xtml:

<h:link value="Go to file1" outcome="subfolder/file2" />

从file1.xhtml导航到file2.xtml:

<h:link value="Go to file2" outcome="?" />

1 个答案:

答案 0 :(得分:2)

以下内容应该有效

<h:link value="Go to file1" outcome="/file1" />