我想知道是否可以将外部链接(例如domain.tld/jsfview
)链接到特定的 jsf 视图/页面。
我不想要我的 jsf 应用程序的起始页,这将由
<navigation-rule>
<navigation-case>
<from-outcome>start</from-outcome>
<to-view-id>/jsf/index.xhtml</to-view-id>
</navigation-case>
</navigation-rule>
试过这个配置
<navigation-rule>
<navigation-case>
<from-outcome>reminder</from-outcome>
<to-view-id>/jsf/remind/index.xhtml</to-view-id>
</navigation-case>
</navigation-rule>
但我只能重定向到我的起始页。
我忘了要提一件重要的事情:JSF 应用程序在带有 jboss portlet 桥的门户环境中运行