According to those tutorials about i18n in SpringFaces:
We should be able to use Spring messageSource bean directly in XHTML Page using <s:messageSource>
tag:
<s:messageSource source="#{messageSource}" var="messages"/>
<p>
<h:outputText value="#{messages.hello}"/>
</p>
</s:messageSource>
However, those tutorials does not make any mention of the XML namespace URI which I should specify in xmlns:s="..."
.
What is the proper XML namespace URI?
I nearly resorted to the "Google it" comment, but after a bunch of googling myself, I'm amazed how obscure/scarce this information is. Almost no one giving a "hello world" tutorial even mentions the tag library's namespace. The Spring docs are even more confusing on this. What you're looking for is http://www.springframework.org/tags. I'd leave a comment on those tutorials you linked also, for the authors to include this trivial but fundamental piece of info