Interview Question in JSF


 

Interview Question :: What is Backing Bean?

 What is Backing Bean?

by ksk
VoteNowAnswers to "What is Backing Bean?"
Backing beans are JavaBeans components associated with UI components used in a page. Backing-bean management separates the definition of UI component objects from objects that perform application-specific processing and hold data.
 

     The backing bean defines properties and handling-logics associated with the UI components used on the page. Each backing-bean property is bound to either a component instance or its value. A backing bean also defines a set of methods that perform functions for the component, such as validating the component's data, handling events that the component fires and performing processing associated with navigation when the component activates. 

by ksk