I'm new to JSF (just started learning about it 4 days ago) and I'm a bit confused about the usage of h:outputText. I know that is a simple tag, but in most examples I've seen, it's used to output very simple (no need to escape), non-i18n text. For example (taken from here)

<h:outputText value="Transport" />

which could be replaced by

Transport 

So, I'm wondering if I'm missing something or if most of the examples I've seen are overcomplicated to the point of insanity.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The example you quote is written in XHTML - which is XML. A standalone 'Transport' may not be allowed at the position you want to put it in, so that you need to "transform" it into valid xml.

IIrc this what is called facelets and the default in JSF2, while in JSF1, the presentation code could be done with JSP tags as default and facelets was an alternative that many developers were using).

link|improve this answer
Gosh, you're right. Sorry for this extra question, but do you know if there's an alternative? Maybe to write the templates in groovy? It's just that the extra complexity is astonishing. – Augusto Apr 4 '11 at 15:08
feedback

If you're using JSF 2.x with Facelets 2.x instead of JSP, then both are equally valid. Even more, Facelets implicitly wraps inline content in a component as represented by <h:outputText> (in other words, it will be escaped!).

Only whenever you'd like to disable escaping using escape="false", or would like to assign id, style, onclick, etc programmatically, then you need <h:outputText>.

I myself don't use h:outputText whenever it is not necessary. It makes the source code better readable. You can even inline EL in template text like so #{bean.text} without the need for a <h:outputText>. Before in JSP and Facelets 1.x this was mandatory.

link|improve this answer
1  
These are good news! Didn't know it. One more point for JSF. Thanks BalusC! – Matt Handy Apr 4 '11 at 18:11
Thanks Balus. I've been removing that tag and the app didn't fail, so I must be using facelets2 (as I'm not using JSP). Thanks for the info! – Augusto Apr 6 '11 at 19:29
You're welcome. Please note that the other answer is technically incorrect for Facelets. – BalusC Apr 6 '11 at 19:31
@balusc A complete (or even partial) list of conventions like this could be really useful to make code manageable across a large team... Do you happen to know of one? I like the complete removal of all outputText unless necessary as well. It's much cleaner that way. – Lucas Sep 19 '11 at 17:35
@Lucas: Sorry, no such public list comes to mind. You'd have to manage your own in cooperation with the JSF lead/architect. By the way, you may find some "best practices" or "hidden features" in this article useful for your projects: balusc.blogspot.com/2011/09/communication-in-jsf-20.html Implicit output text is also mentioned over there. – BalusC Sep 19 '11 at 18:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.