Money Mgt Calculator
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » JSF
 
RSS feed
 
New topic
Author

Why the getter method of managed-bean was invoked twice?

Wei GENG
Greenhorn

Joined: Dec 10, 2004
Messages: 27

I wrote a very simlpe JSF page like this:


And the managed bean class like this:



When I input a name and submitted this page, the console output is:


I have 2 questions:
1. Why the getUserName() method was invoked twice by system? I supposed 1 time is correct.
2. When the tag <f:setPropertyActionListener/> be executed? It was said it will be executed before simple actionListener. However, it seems that this tag was not executed until 'sayHello' actionListener finished.

Please help, thanks!
Tim Holloway
Bartender

Joined: Jun 25, 2001
Messages: 7824

You should never assume that property getters on a backing bean will be called only once. In particular, don't do any side (state-changing) logic in getters for that reason. The bean's properties will be retrieved at multiple times in the JSF lifecycle as needed to prepare for update, display, and validate.

As far as the second question goes, I haven't studied that.

If a low price is more important to you than getting good value for your money, you're not as prosperous as you think you are.
Wei GENG
Greenhorn

Joined: Dec 10, 2004
Messages: 27

Tim Holloway wrote:You should never assume that property getters on a backing bean will be called only once. In particular, don't do any side (state-changing) logic in getters for that reason. The bean's properties will be retrieved at multiple times in the JSF lifecycle as needed to prepare for update, display, and validate.

As far as the second question goes, I haven't studied that.



Thanks for your answer to the first question.

Regarding to the second one, I guess I've got it.

According to the book 'Core JSF Programming', the method that is binded to 'actionListener' attribute in component tag will always been invoked earlier than the progressAction method of <f:actionListener> ActionListener.

In my opinion, <f:setPropertyActionListener> is a kind of <f:actionListener>. Therefore, its progressAction method will not be invoked until 'actionListener' attribute method finished.

I have made a test and it proved my guess.

This message was edited 1 time. Last update was at by Wei GENG

 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » JSF
 
RSS feed
 
New topic
IntelliJ open source

.