我一直在阅读一些帖子,说您可以执行以下操作:假设此条目在faces-config.xml
..
<from-view-id></from-view-id>
<navigation-case>
<from-outcome>home</from-outcome>
<to-view-id>/xxx/index.xhtml</to-view-id>
</navigation-case>
..
String
动作实现中的this :
return "home?param=1&faces-redirect=true";
这对我不起作用。它给了我一个错误,说它不能匹配导航案例:
Unable to find matching navigation case with from-view-id '/xxx/yyy.xhtml' for action 'home?faces-redirect=true¶m=1' with outcome 'home?faces-redirect=true¶m=1
另一方面,如果我使用完整的视图名称,它就可以正常工作。这是一个错误还是我做错了什么?