1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<html>
<head>
<title>JSTL: Formatting/I18N Support -- Missing Resource Bundle Example</title>
</head>
<body bgcolor="#FFFFFF">
<h3>Missing Resource Bundle</h3>
<ul>
<li> Implicit collaboration with <bundle> (via ancestry chain):<br>
<fmt:bundle basename="org.apache.taglibs.standard.examples.i18n.MissingResources">
<fmt:message key="greetingMorning"/>
</fmt:bundle>
<li> Explicit collaboration with <bundle> (via <tt>var</tt> attribute):<br>
<fmt:setBundle basename="org.apache.taglibs.standard.examples.i18n.MissingResources" var="enBundle"/>
<fmt:message key="greetingEvening" bundle="${enBundle}"/>
</ul>
</body>
</html>
|