<%@ page language="java" contentType="text/html;charset=Windows-31J"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<html><body>
<fmt:setBundle basename="application" var="resource" />
<fmt:message bundle="${resource}" key="item.id"/><br>
<fmt:message bundle="${resource}" key="item.name" var="data" />
<c:out value="${data}" /><br>
</body></html>
|