Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JSF 2.0 Forbid calling action after failed validation in actionListener

I have a dialog for adding some data:

<p:commandButton id="save" 
    actionListener="#{adminNationalController.saveTeam}" 
    action="#{adminManageInternationalTournamentController.updateTeamList}"
    value="#{msg.save}" ajax="true"
    icon="ui-icon-check"
    onmousedown="return validateSubmit('addCombinedTeamForm', ['name'],'lang')"
    oncomplete="if (!args.validationFailed) addCombinedTeamDialog.hide()"
    process = "@form"
    update="lang, name, :manageTournament:dataList,:manageTournament:scroll, :menuForm:growl, :manageTournament:nationalTeam">

    <f:setPropertyActionListener 
        value="#{adminNationalController.newTeamBean}"
        target="#{adminManageInternationalTournamentController.newTeamBean}"/>

</p:commandButton> 

In saveTeam I try to validate data but action case in case validation failed.

Is it posible forbid calling action?

like image 202
Ray Avatar asked Dec 05 '25 07:12

Ray


2 Answers

From an action listener, you're supposed to throw AbortProcessingException when you want to abort the processing of the remaining action listeners and the final action.

However, better would be to use a real Validator on the input component. This way the whole invoke action phase will be bypassed.

See also:

  • Differences between action and actionListener
like image 173
BalusC Avatar answered Dec 06 '25 19:12

BalusC


In your saveTeam if validation fails you can call FacesContext#renderResponse() on your current FacesContext instance to skip all the subsequent phases and go to render response phase.

Just add the line bellow:

   FacesContext.getCurrentInstance().renderResponse();

in case of validation fails in saveTeam.

Edit:

My suggestion will be to use a real validator for validation purpose.

like image 25
Sazzadur Rahaman Avatar answered Dec 06 '25 21:12

Sazzadur Rahaman