I'm starting the studies with JSF (JavaServer Faces) and writing an xhtml file, I had the following dilemma:
Why not use HTML tag replacing some JSF compiler, when possible?
Example: use: <label for="nome">Nome</label>
instead of <h:outputLabel value="Nome" for="nome"/>
This practice improves application performance, does the server have fewer components to process, or does it make no difference, since all tags will be processed by the server?