有什么方法可以实现从文件“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="?" />
答案 0 :(得分:2)
以下内容应该有效
<h:link value="Go to file1" outcome="/file1" />