使用struts1的bean:write标签时,如果要显示的属性为int或bigdecimal类型时,会报找不到message key异常
解决方法:
指定标签的format为#
<bean:write name="a" property="int" format="#"/>
<bean:write name="b" property="bigdecimal" format="#"/>
使用struts1的bean:write标签时,如果要显示的属性为int或bigdecimal类型时,会报找不到message key异常
解决方法:
指定标签的format为#
<bean:write name="a" property="int" format="#"/>
<bean:write name="b" property="bigdecimal" format="#"/>