如何在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. |
相关讨论
相关资源推荐
- JSF配置文件faces-config.xml参数详解
- 使用Jsonup解析JSF「faces-config.xml」标签<navigation-rule>
- JSF学习笔记faces-config.xml参数描述
- JSF学习笔记-web.xml和faces-config.xml配置
- 源码分析JSF画面跳转下一个画面流程,关联faces-config.xml
- java项目web.xml_java项目中的web.xml配置说明
- javaEE开发中遇到的常见配置解析,XML和注解
- JSF -> 导航(Navigation)
- Hello1 project项目中的web.xml
- javax.faces.application.ViewExpiredException与no saved view state could be found的解决方案