Should I use <h:outputText value="static text"/> or directly write static text into the xhtml file to print text that is static?
Example - with output text:
<h:outputText value="User Name:"/>
<h:outputText value="#{currentUser.name}"/>
Example - directly:
User Name:
<h:outputText value="#{currentUser.name}"/>
 
     
    