aspose file tools
The moose likes JSF and the fly likes How to add and update a message during a backing bean listener? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSF
Reply Bookmark "How to add and update a message during a backing bean listener?" Watch "How to add and update a message during a backing bean listener?" New topic
Author

How to add and update a message during a backing bean listener?

Luciano Assis
Greenhorn

Joined: Apr 30, 2008
Posts: 16
Hello,

I got a Composite Component with a class anotated with @FacesComponent that has a ActionListener, ValueChangeListener and much more.

My Problem is that in some situations I do need to add a FacesMessage and update my p:messages tag with the new message.

I Tried everything to solve this problem... but the p:messages is not rendering my messages.

Maybe because the Faces Messages is rendered only after the complete JSFLife Cycle and as far i know... JSF Listeners do not obey the normal JSF Life Cycle.

How can I add the message?

Thank's for your help.
Tim Holloway
Saloon Keeper

Joined: Jun 25, 2001
Posts: 14491
    
    7

JSF listeners do, in fact participate in the JSF lifecycle. What part of the lifecycle the listener is invoked in depends on what kind of listener it is. However, most listeners post messages by throwing Exceptions, not by attempting to attach them to the FacesContext.


Customer surveys are for companies who didn't pay proper attention to begin with.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How to add and update a message during a backing bean listener?
 
Similar Threads
Validation Messages in different h:Message components inside same form
synchronization validation and display of dialog in a primeface JSF2.0 form
SelectOneMenu - Validation Error: Value is not valid
Threads in JSF?
Issue: commandButton's onsucess attribute not working as expected