binding « Tag « JSF Q&A





1. Difference between value and binding tag for UIComponents in JSF    stackoverflow.com

I am learning JSF and am confused in these two attributes. What difference will it make if I will use: <h:inputText value="#{myBean.myProperty}/>" rather than using: <h:inputText binding="#{myBean.myProperty}/>"

3. Difference between binding and value tag    coderanch.com

I think originally value tags didn't exist and binding was the only choice. Then a bunch of stale web pages kept Binding in view long after it was no longer the best solution. Binding is a lot more cumbersome than value expressions. It introduces JSF-specific logic and constructs into what would otherwise be POJOs. There are uses for bindings, however, just ...