To summarize in clear language: ${expression}
does only get, while #{expression}
can do both get and set.
In JSF (on Facelets), when you put something like this as first expression of the page
${bean.property}
where bean
is a request scoped managed bean, you will see nothing. But if bean
is a session scoped managed bean and already been created before, then you will see the property value being printed. This also applies if the request scoped managed bean is created before by #{bean.xxx}
in the same page.
If you instead do as first expression of the page
#{bean.property}
then EL will test if bean
is null and if so, then it will set (create) a new one. If the property is set during bean construction, then you will see the property being displayed by this expression.
This all is mandatory to get under each JSF UIInput
components such as <h:inputText>
to work. When you submit the form, the #{expression}
will set the values in the bean.