Struts运行时出现的一个问题
2008年11月7日
| 标签: struts
问题:Cannot find message resources under key org.apache.struts.action.MESSAGE
原因:是说明找不到ApplicationResources.properties
解决方案:
1、web.xml文件:
……
<web-app>
<servlet>
<init-param><param-name>application</param-name><param-value>ApplicationResources</param-value></init-param>
</servlet>
</web-app>
……
?
2、struts-config.xml文件:
……
<message-resources parameter=”ApplicationResources”/>
</struts-config>
(确保ApplicationResources.properties文件在你建立的WEB-INF\classes文件夹中)
类别(j2ee) |
浏览(393) |
发表评论
| Trackback
