Cannot find message resources under key org.apache.struts.action.MESSAGE 异常解决方法
今天我在循环一个Map的时候遇到了一个很郁闷的bug,纠结了很久,记下来!!!
下面是部分代码
<logic:equal name="map" property="key" value="Sno">
<td><bean:write name="map" property="value" /> </td>
</logic:equal>
在使用struts的标签<bean:write name="map" property="value" />的时候,会报出如下的错误:
org.apache.jasper.JasperException: Cannot find message resources under key org.apache.struts.action.MESSAGE
解决办法:在struts-config.xml文件中加入下面一句就可以啦:
<message-resources parameter="ApplicationResources"></message-resources>
注意message-resources 在struts-config.xml文件中的添加位置!
http://www.cnblogs.com/gywbg --------------GYW