Question:
I see in several code examples the views using those jsp tags, which I find very ugly and dirty.
Is there any java web framework that is used in corporate app that can give me the normal html, without those ugly tags like <h:form>
and so on?
Answer:
If the JSF version is 1.2 or higher, just write normal HTML without problems in your source. The transformation is only applied to JSF tags.
If it is version 1.1, use:
<f:verbatim><p>Meu HTML normal</p></f:verbatim>