Action vs ActionListener
I am curious if there are any best practices for using the action property vs the actionlistener property to execute some managed bean code when clicking on a button? Should you only use the actionlistener if you need to do something with the action event? Is there performance implications of using action vs actionlistener?
Thanks.