MessageResources.propertiesの値を取得出来ません
現在のソースは、下記ソースの通りです。
メッセージリソースに登録しているものを、JSPのhtml:errorsタグで表示したいのですが、
表示することが出来ていない状況です。
ソースの内容は間違えていないように思うので、
MessageResources.propertiesの配置かなと考えていますが、
classes/hello/resources内に配置しており、strutsの記載と合致しているように思います。
現在はこれといった原因が分かっておりません。
解決方法の分かる方がいましたら、ご教授をお願いします。
MessageResources.properties ソース
test = error1
struts-config ソース
~
<!-- ========================== Message Resources Definitions -->
<message-resources parameter="hello.resources.MessageResources"/>
~
action.java ソース
ActionErrors errors = new ActionErrors();
ActionMessage msg = new ActionMessage("test");
errors.add(ActionErrors.GLOBAL_MESSAGE, msg);
addErrors(request, errors);
return mapping.findForward("error");
JSPソース
<%@ page contentType="text/html; charset=Shift-JIS" %>
<%@ taglib uri="http://struts.apache.org/tags-html"
prefix="html" %>
<html:html>
<head>
<title>Who</title>
</head>
<p><html:errors /></p>
<html:form action="/hello">
<table border="0">
<tr><td>
あなたの名前は?<br>
<html:text property="name" size="20" maxlength="30" />です。
</td></tr>
<tr><td>
<html:submit value="OK" />
</td></tr>
</table>
</html:form>
</html:html>