如何在faces-config.xml中配置一個帶參數的url跳轉

bengan 2008-11-13
我想在faces-config.xml中配置一個帶參數的url跳轉??下面的跳轉之后沒有了“?param=123”部分。
<navigation-case>
    <from-action>#{testMb.gotoUrl}</from-action>
    <from-outcome>GO</from-outcome>
    <to-view-id>/fwk/admin/test.jsf?param=123</to-view-id>
    <redirect/>
</navigation-case>
bengan 2008-11-14
昨天上sun的論壇問了一下,老外給我的答案是不能實現。
A view ID is not an URL.

Instead trypublic void
gotoURL() {
    FacesContext.getCurrentInstance().getExternalContext().redirect("/fwk/admin/test.jsf?param=123");
}

or write your own NavigationHandler implementation which accepts URL's rather than view ID's.
Global site tag (gtag.js) - Google Analytics