Book Image

Mastering JavaServer Faces 2.2

By : Anghel Leonard
Book Image

Mastering JavaServer Faces 2.2

By: Anghel Leonard

Overview of this book

Table of Contents (20 chapters)
Mastering JavaServer Faces 2.2
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
The JSF Life Cycle
Index

Configuring action listeners


Action listeners are a great facility provided by JSF for dealing with action events. Commonly, action listeners are attached to command buttons (<h:commandButton>) or command links (<h:commandLink>) using the actionListener attribute.

When a button/link is clicked, JSF calls the action listener during the Invoke Application phase. Notice that if you are using immediate="true", then the action listener is called during the Apply Request Values phase. The method, indicated as a listener, should be public, should return void, and should accept an ActionEvent object (this object can be used to access the component that invoked the action), which can perform specific tasks. When its execution has finished, JSF will call the method bound by the action attribute (if it exists!). This method is responsible to indicate the navigation case. The action listener method can alter the response returned by the action method.

Note

As a practice, actionListener is...