「Java」fmt:setBundlとfmt:messageタグでリソースメッセージを取得する
1.app.properties
username = yamada
memo = tt
userid = 1020
2.JSPコード
<fmt:setBundle basename="app" var="res" />
<fmt:message bundle="${res}" key="username"/><br>
<fmt:message bundle="${res}" key="userid"/><br>
<fmt:message bundle="${res}" key="memo" var="tt" />
<c:out value="${tt}" />