According to those tutorials about i18n in SpringFaces:
- http://www.javacodegeeks.com/2012/06/spring-jsf-integration.html
- https://coderphil.wordpress.com/2011/11/15/integrating-spring-javaserver-faces-internationalization-and-localization/
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?