In JSF managed beans you can add messages to the context for use in views. For instance when an error occurs you can add a message to be displayed to the user....
The problem started when I added this param to a commandlink like in the code below: <h:commandLink value="#{item.elementCombinedCode}" action="#{elementFormController.prepareElementAction}"><f:param name="elementNbr" value="#{item.elementId}" /> With Glassfish version 9.1_01 (build b09d-fcs) I then got this...
I got nullpointers for all EJB injected dao’s :o. In fact a colleague of me already blogged the solution. It’s a small world after all :D. I was trying to get @EJB...
The problem is some commandButtons simply don’t work at all. The action is never executed. I tested with a debugger and there is not even a call to the given action method...
I’m refreshing my JSF knowledge since I’ve been working with spring mvc instead for a while. In fact a lot is similar to spring or can be done using a similar approach....