|
Answer» The different types of JSF events are: - Post Construct APPLICATION Event:- It fires when the application BEGINS. It is used for performing tasks related to initialization after an application has started.
- Pre Destroy Application Event:- It fires when an application is about to CLOSE. It performs all kinds of clean-up tasks before the application gets closed.
- PreRender View Event:- It fires when the JSF page is about to get displayed. It is used for user authentication. It gives restricted access to JSF view.
|