Sometimes, when using <h:commandLink>
, <h:commandButton>
or <f:ajax>
, the action
, actionListener
or listener
method associated with the tag are simply not being invoked. Or, the bean properties are not updated with submitted UIInput
values.
What are the possible causes and solutions for this?
If your
h:commandLink
is inside ah:dataTable
there is another reason why theh:commandLink
might not work:The underlying data-source which is bound to the
h:dataTable
must also be available in the second JSF-Lifecycle that is triggered when the link is clicked.So if the underlying data-source is request scoped, the
h:commandLink
does not work!I had this problem as well and only really started to hone in on the root cause after opening up the browser's web console. Until that, I was unable to get any error messages (even with
<p:messages>
). The web console showed an HTTP 405 status code coming back from the<h:commandButton type="submit" action="#{myBean.submit}">
.In my case, I have a mix of vanilla HttpServlet's providing OAuth authentication via Auth0 and JSF facelets and beans carrying out my application views and business logic.
Once I refactored my web.xml, and removed a middle-man-servlet, it then "magically" worked.
Bottom line, the problem was that the middle-man-servlet was using RequestDispatcher.forward(...) to redirect from the HttpServlet environment to the JSF environment whereas the servlet being called prior to it was redirecting with HttpServletResponse.sendRedirect(...).
Basically, using sendRedirect() allowed the JSF "container" to take control whereas RequestDispatcher.forward() was obviously not.
What I don't know is why the facelet was able to access the bean properties but could not set them, and this clearly screams for doing away with the mix of servlets and JSF, but I hope this helps someone avoid many hours of head-to-table-banging.
I had lots of fun debugging an issue where a
<h:commandLink>
's action inrichfaces
datatable
refused to fire. The table used to work at some point but stopped for no apparent reason. I left no stone unturned, only to find out that myrich:datatable
was using the wrongrowKeyConverter
which returned nulls that richfaces happily used as row keys. This prevented my<h:commandLink>
action from getting called.This is the solution, which is worked for me.
Here, process="userGroupSetupForm" atrribute is mandatory for Ajax call. actionListener is calling a method from @ViewScope Bean. Also updating growl message, Datatable: userGroupList and Form: userGroupSetupForm.
I fixed my problem with placing the:
In:
Introduction
Whenever an
UICommand
component (<h:commandXxx>
,<p:commandXxx>
, etc) fails to invoke the associated action method, or anUIInput
component (<h:inputXxx>
,<p:inputXxxx>
, etc) fails to process the submitted values and/or update the model values, and you aren't seeing any googlable exceptions and/or warnings in the server log, also not when you configure an ajax exception handler as per Exception handling in JSF ajax requests, nor when you set below context parameter inweb.xml
,and you are also not seeing any googlable errors and/or warnings in browser's JavaScript console (press F12 in Chrome/Firefox23+/IE9+ to open the web developer toolset and then open the Console tab), then work through below list of possible causes.
Possible causes
UICommand
andUIInput
components must be placed inside anUIForm
component, e.g.<h:form>
(and thus not plain HTML<form>
), otherwise nothing can be sent to the server.UICommand
components must also not havetype="button"
attribute, otherwise it will be a dead button which is only useful for JavaScriptonclick
. See also How to send form input values and invoke a method in JSF bean and <h:commandButton> does not initiate a postback.You cannot nest multiple
UIForm
components in each other. This is illegal in HTML. The browser behavior is unspecified. Watch out with include files! You can useUIForm
components in parallel, but they won't process each other during submit. You should also watch out with "God Form" antipattern; make sure that you don't unintentionally process/validate all other (invisible) inputs in the very same form (e.g. having a hidden dialog with required inputs in the very same form). See also How to use <h:form> in JSF page? Single form? Multiple forms? Nested forms?.No
UIInput
value validation/conversion error should have occurred. You can use<h:messages>
to show any messages which are not shown by any input-specific<h:message>
components. Don't forget to include theid
of<h:messages>
in the<f:ajax render>
, if any, so that it will be updated as well on ajax requests. See also h:messages does not display messages when p:commandButton is pressed.If
UICommand
orUIInput
components are placed inside an iterating component like<h:dataTable>
,<ui:repeat>
, etc, then you need to ensure that exactly the samevalue
of the iterating component is been preserved during the apply request values phase of the form submit request. JSF will reiterate over it to find the clicked link/button and submitted input values. Putting the bean in the view scope and/or making sure that you load the data model in@PostConstruct
of the bean (and thus not in a getter method!) should fix it. See also How and when should I load the model from database for h:dataTable.If
UICommand
orUIInput
components are included by a dynamic source such as<ui:include src="#{bean.include}">
, then you need to ensure that exactly the same#{bean.include}
value is preserved during the view build time of the form submit request. JSF will reexecute it during building the component tree. Putting the bean in the view scope and/or making sure that you load the data model in@PostConstruct
of the bean (and thus not in a getter method!) should fix it. See also How to ajax-refresh dynamic include content by navigation menu? (JSF SPA).The
rendered
attribute of the component and all of its parents and thetest
attribute of any parent<c:if>
/<c:when>
should not evaluate tofalse
during the apply request values phase of the form submit request. JSF will recheck it as part of safeguard against tampered/hacked requests. Storing the variables responsible for the condition in a@ViewScoped
bean or making sure that you're properly preinitializing the condition in@PostConstruct
of a@RequestScoped
bean should fix it. The same applies to thedisabled
attribute of the component, which should not evaluate totrue
during apply request values phase. See also JSF CommandButton action not invoked and Form submit in conditionally rendered component is not processed.The
onclick
attribute of theUICommand
component and theonsubmit
attribute of theUIForm
component should not returnfalse
or cause a JavaScript error. There should in case of<h:commandLink>
or<f:ajax>
also be no JS errors visible in the browser's JS console. Usually googling the exact error message will already give you the answer. See also Adding jQuery to PrimeFaces results in Uncaught TypeErrors.If you're using Ajax via JSF 2.x
<f:ajax>
or e.g. PrimeFaces<p:commandXxx>
, make sure that you have a<h:head>
in the master template instead of the<head>
. Otherwise JSF won't be able to auto-include the necessary JavaScript files which contains the Ajax functions. This would result in a JavaScript error like "mojarra is not defined" or "PrimeFaces is not defined" in browser's JS console. See also h:commandLink actionlistener is not invoked when used with f:ajax and ui:repeat.If you're using Ajax, and the submitted values end up being
null
, then make sure that theUIInput
andUICommand
components of interest are covered by the<f:ajax execute>
or e.g.<p:commandXxx process>
, otherwise they won't be executed/processed. See also Submitted form values not updated in model when adding <f:ajax> to <h:commandButton> and Understanding PrimeFaces process/update and JSF f:ajax execute/render attributes.If the submitted values still end up being
null
, and you're using CDI to manage beans, then make sure that you import the scope annotation from the correct package, else CDI will default to@Dependent
which effectively recreates the bean on every single evaluation of the EL expression. See also @SessionScoped bean looses scope and gets recreated all the time, fields become null and What is the default Managed Bean Scope in a JSF 2 application?If a parent of the
<h:form>
with theUICommand
button is beforehand been rendered/updated by an ajax request coming from another form in the same page, then the first action will always fail in JSF 2.2 or older. The second and subsequent actions will work. This is caused by a bug in view state handling which is reported as JSF spec issue 790 and currently fixed in JSF 2.3. For older JSF versions, you need to explicitly specify the ID of the<h:form>
in therender
of the<f:ajax>
. See also h:commandButton/h:commandLink does not work on first click, works only on second click.If the
<h:form>
hasenctype="multipart/form-data"
set in order to support file uploading, then you need to make sure that you're using at least JSF 2.2, or that the servlet filter who is responsible for parsing multipart/form-data requests is properly configured, otherwise theFacesServlet
will end up getting no request parameters at all and thus not be able to apply the request values. How to configure such a filter depends on the file upload component being used. For Tomahawk<t:inputFileUpload>
, check this answer and for PrimeFaces<p:fileUpload>
, check this answer. Or, if you're actually not uploading a file at all, then remove the attribute altogether.Make sure that the
ActionEvent
argument ofactionListener
is anjavax.faces.event.ActionEvent
and thus notjava.awt.event.ActionEvent
, which is what most IDEs suggest as 1st autocomplete option. Having no argument is wrong as well if you useactionListener="#{bean.method}"
. If you don't want an argument in your method, useactionListener="#{bean.method()}"
. Or perhaps you actually want to useaction
instead ofactionListener
. See also Differences between action and actionListener.Make sure that no
PhaseListener
or anyEventListener
in the request-response chain has changed the JSF lifecycle to skip the invoke action phase by for example callingFacesContext#renderResponse()
orFacesContext#responseComplete()
.Make sure that no
Filter
orServlet
in the same request-response chain has blocked the request fo theFacesServlet
somehow.If you are using a PrimeFaces
<p:dialog>
or a<p:overlayPanel>
, then make sure that they have their own<h:form>
. Because, these components are by default by JavaScript relocated to end of HTML<body>
. So, if they were originally sitting inside a<form>
, then they would now not anymore sit in a<form>
. See also p:commandbutton action doesn't work inside p:dialogBug in the framework. For example, RichFaces has a "conversion error" when using a
rich:calendar
UI element with adefaultLabel
attribute (or, in some cases, arich:placeholder
sub-element). This bug prevents the bean method from being invoked when no value is set for the calendar date. Tracing framework bugs can be accomplished by starting with a simple working example and building the page back up until the bug is discovered.Debugging hints
In case you still stucks, it's time to debug. In the client side, press F12 in webbrowser to open the web developer toolset. Click the Console tab so see the JavaScript conosle. It should be free of any JavaScript errors. Below screenshot is an example from Chrome which demonstrates the case of submitting an
<f:ajax>
enabled button while not having<h:head>
declared (as described in point 7 above).Click the Network tab to see the HTTP traffic monitor. Submit the form and investigate if the request headers and form data and the response body are as per expectations. Below screenshot is an example from Chrome which demonstrates a successful ajax submit of a simple form with a single
<h:inputText>
and a single<h:commandButton>
with<f:ajax execute="@form" render="@form">
.(warning: when you post screenshots from HTTP request headers like above from a production environment, then make sure you scramble/obfuscate any session cookies in the screenshot to avoid session hijacking attacks!)
In the server side, make sure that server is started in debug mode. Put a debug breakpoint in a method of the JSF component of interest which you expect to be called during processing the form submit. E.g. in case of
UICommand
component, that would beUICommand#queueEvent()
and in case ofUIInput
component, that would beUIInput#validate()
. Just step through the code execution and inspect if the flow and variables are as per expectations. Below screenshot is an example from Eclipse's debugger.