vote up 1 vote down star

I am not clear on the difference between these two methods. I see that the actionListener takes an ActionEvent as a parameter, but both may be tied to a method in the backing bean.

Is the only functional difference the ActionEvent parameter? So if I need ActionEvent use the listener method, if not, either will work?

flag

1 Answer

vote up 1 vote down check

actionListener takes an ActionEvent as the Parameter and returns void. Action takes no parameters and returns a String which can be used for navigation.

If you don't need the ActionEvent, and don't need to navigate, you can generally do either one. If you do need the ActionEvent, you need actionListener. If you do need to navigate, then you need the action.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.