I\'ve read this several times now: some developers aren\'t advocates of interleaving JSF/Facelets tags with HTML tags in their XHTML files. Obviously the HTML tags won\'t be
During the JSF 1.0/1.1 ages this was indeed "not a good idea", because all the HTML was not automatically taken in the JSF component tree when using JSP as view technology. All plain HTML was eagerly by JSP rendered before the JSF component tree. E.g.
Lorem ipsum dolor sit amet
Consectetur adipiscing elit
got rendered as
Lorem ipsum dolor sit amet
Consectetur adipiscing elit
value1
To fix this you would need to bring
in.
Lorem ipsum
dolor sit amet
Consectetur adipiscing
elit
This was a real maintenance pain. This was one of the major reasons why JSF 1.0/1.1 was so hated.
Since JSF 1.2, with the new view handler, the
was not necessary anymore. Developers can now breathe relieved. Moreover, the new view handler allowed JSF to use a different view technology than JSP and this way Facelets was born.