另一件事,我在jsp中包含了jstl,而messages.properties包含了使用messages.properties从jsp调用的以下one.i.
但是当我尝试运行时,标签没有显示.. 它是这样的diplaying。
航向??? ???
??? ???问候Tue Nov 27 10:33:12 SGT 2012
标题= SpringApp
heading = Hello :: SpringApp
greeting =问候,现在是
<head><title><fmt:message key="title"/> </title></head>
<h1>Hello - Spring Application</h1>
<!-- <p>Greetings.it is now ${now} </p> -->
<!-- <p>Greetings.it is now <c:out value ="${now}" /> </p> -->
<h1><fmt:message key="heading"/></h1>
<p><fmt:message key="greeting"/> <c:out value="${model.now}"/></p>
<h3>Products</h3>
<c:forEach items="${model.products}" var="prod">
<c:out value="${prod.description}"/> <i>$<c:out value="${prod.price}"/></i><br><br>
</c:forEach>