How many step the JSF life-cycle are completed?
There are six phases of the JSF application life-cycle
1. Restore view
2. Apply request values; process events
3. Process validations; process events
4. Update model values; process events
5. Invoke application; process events
6. Render response
| More interview questions and answers |
|---|
A JavaServer Faces EL expression that refers to a property of a backing bean. A component tag uses this expression to bind the associated component\'s value or the component instance to the bean property. If the component tag refers to the property via its value attribute, then the component\'s value is bound to the property. If the component tag refers to the property via its binding attribute then the component itself is bound to the property. |
There are six phases of the JSF application life-cycle |
How URL String help to pass a parameter in the JSF application? |
if suppose that we have any URL: http://r4r.co.in/java/project.jsf?id=77, we are tring to access the passing parameter id with the following lines of java code. |
Following are advantage of the JSF |
We can divide jsf into |
JSF provides following services |
JSF <f:attribute> Tag is use to add an attribute to the UIComponent associated with the enclosing parent tag |
JSF <f:convertDateTime> Tag is register a DateTimeConverter instance on UIComponent associate with the enclosing parent tag. |
JSF <f:convertNumber> Tag is register a NumberConverter instance on the UIComponent associate with the enclosing parent tag. |
JSF <f:subview> Tag is help to dynamically includes another page from the same web application. |