first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

JavaServer Faces in Action Notes: Chapter 2; JSF Fundamentals; 2.1.5 Converters

2.1.5 Converters

Converters do the job converting object and scalar values into strings. They also handle the task of localization. The sample below declares a DateTime converter for an HtmlOutputText component:

<h:outputText value="#{user.dateOfBirth}">
    <f:convert_datetime type="both" dateStyle="full" />
</h:outputText>

"JSF ships with converters for common types like dates and numbers, but you or third parties, can develop additional ones as well."

mod date: 2007-03-13T21:45:21.000Z