JSF
<h:inputText id="abc" value="#{bean.name}"/>
The above code will search for a function called getName() in bean.
But where is the rule mentioned that bean.name will search for bean.getName()?
How this transformation is done?
Why it searches getName() not giveName().
I know that the java uses getters and setters but in jsf is this transformation rule written somewhere?/

