difference between value and component binding in JSF
Posted by admin on February 10th, 2009 filed in JSFBefore reading Balusc’s blog post I thought there is no big difference between the value and component binding in the Java Server faces but after that post I got clear idea about component and value binding. there is some big difference between them. A lot of things happens in the life cycle because of that component binding behave like Java Swing application. if we look into the internals of the JSF lifecycle we can conclude some important things.’
generally in the JSF life cycle at the time of “validation Phase” the user submitted value will set into the component’s value but it should pass the validation phase. So the user summited value will available in for the value change event method.

Leave a Comment