In my .xhtml pages in my JSF 2.0 application, I am trying to find out a way to have multiple EL values and strings to be used with a single HTML attribute. The following WRONG syntax will give you the idea:
<h:outputText value=" 'Welcome' + #{myBean.loggedInUser} + ' ' "/>
So I am wondering what is the correct way of doing it. I don't need a workaround (as h:outputText is just an example).
Also let me know if your suggestion works in JSP/JSF1.2 or not