|
Home TOC |
|
Internationalization Tags
In Internationalizing and Localizing Web Applications we discussed the how to adapt Web applications to the language and formatting conventions of client locales. This section describes tags that support the internationalization of JSP pages.
JSTL defines two sets of tags:
- Messaging tags assist page authors with creating messages that can be adapted to any locale available in the JSP container
- Formatting tags allow various data elements such as numbers, currencies, dates and times to be formatted and parsed in a locale-sensitive or customized manner.
Messaging Tags
By default, browser-sensing capabilities for locales are enabled. This means that the client determines (via its browser settings) which locale to use, and allows page authors to cater to the language preferences of their clients.
The
localetag is used to override the client-specified locale for a page.Specifying a Bundle
You use the
bundletag to specify a resource bundle for a page.To define a resource bundle for a Web application you specify the context parameter
javax.servlet.jsp.jstl.i18n.basenamein the Web application deployment descriptor. Here is the declaration from the Duke's Bookstore descriptor:<context-param> <param-name> javax.servlet.jsp.jstl.i18n.basename </param-name> <param-value>messages.BookstoreMessages</param-value> </context-param>Message Tags
The
messagetag is used to output localized strings. The following tag fromcatalog.jsp:<h3><fmt:message key="Choose"/></h3>is used to output a string inviting customers to choose a book from the catalog.
The
messageFormattag performs parametric replacement on a given pattern string, using the runtime's default locale. The pattern string may be specified via thevalueattribute; if missing, it is read from the tag's body content.The
messageArgtag provides a single argument (for parametric replacement) to the compound message or pattern in its parentmessageormessageFormattag, respectively. OnemessageArgtag must be specified for each variable in the compound message or pattern. Parametric replacement takes place in the order of themessageArgtags.Formatting Tags
The
formatNumbertag is used to output localized numbers. The following tag fromshowcart.jsp:<fmt:formatNumber value="$book.price" type="currency"/>is used to display a localized price for a book. Note that since the price is maintained in the database in dollars, the localization is somewhat phony, because the the
formatNumbertag is unaware of exchange rates. The tag formats currencies but does not convert them. Analogous tags for formatting dates (formatDate), and parsing numbers and dates (parseNumber,parseDate) are also available. ThetimeZonetag establishes the time zone (specified via thevalueattribute) to be used by any nestedformatDatetags.
|
Home TOC |
|