Received error while using <bean:write> tag
Cannot find message resources under key org.apache.struts.action.MESSAGE
Cause:
A int value was being displayed using <bean:write>
<bean:write property="xxxProperty" name="xxForm />
Solution:
Used format attribute to provide the format of Integer
<bean:write property="xxxProperty" name-"xForm" format="#" />
and it worked.
P.S.- Working in Struts 1 again makes me realize how painful it was :-)
2 comments:
Thanks for that...
Fully agree, I feel your pain right now ;-(
Thanks a lot! You're right, what a pain but you solved this for me :D Thanks a lot!
Post a Comment