我想使用'faces-config'xml文件资源重定向我的应用流程,就像“重定向”标记一样。
所以,这是我的“面孔”xml:
<navigation-rule>
<from-view-id>/index.xhtml</from-view-id>
<navigation-case>
<from-outcome>falha_etapa_1</from-outcome>
<to-view-id>/index.xhtml</to-view-id>
<redirect>
<redirect-param>
<name>msg</name>
<value>-1</value>
</redirect-param>
</redirect>
</navigation-case>
</navigation-rule>
在这里,我的jsf页面:
<h:form>
<f:view>
<p:outputLabel value="${param['msg']}" />
and so on....
这个印刷品的任何东西(空白)!!!! 为什么无法打印参数值? 谢谢!
答案 0 :(得分:1)
使用<view-param>
代替<redirect-param>
。
像这样:
<view-param>
<name>msg</name>
<value>-1</value>
</view-param>
答案 1 :(得分:0)
将${param['msg']}
更改为#{param['msg']}
<p:outputLabel value="#{param['msg']}" />
更多信息: