如何有条理地打破ActionListener执行链?

时间:2011-03-17 06:13:26

标签: jsf jsf-2 primefaces

<p:commandButton ajax="true" value="submit"/>
     <f:actionListener binding="#{bean.method1()}" />
     <f:actionListener binding="#{bean.method2()}" />
     <f:actionListener binding="#{bean.method3()}" />
</p:commandButton>

如果在任何一个侦听器中不满足条件,我想打破actionListener执行链。如果actionListener遇到不满足的条件,我还想为每个actionListener显示一个不同的p:dialog

这在JSF 2.0中是否可行?如何实现?

提前致谢。

0 个答案:

没有答案