我想通过使用 '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....
这个印刷品是什么(空白)!!!!为什么不能打印参数值?谢谢!