Write HTML in JSF sources - Frameworks?

3

I see in several code examples the views using those tags , which I find very ugly and dirty.

Is there a java web framework that is used in corporate app and can give me the normal html, without those ugly tags like <h:form> and others?

    
asked by anonymous 20.03.2014 / 21:30

1 answer

1

If the JSF version is 1.2 or higher, simply write the normal HTML with no problems at your source. The transformation is applied only to JSF tags.

If it is version 1.1, use:

<f:verbatim><p>Meu HTML normal</p></f:verbatim>
    
20.03.2014 / 22:15