Tuesday, October 19, 2010

Cannot find message resources under key org.apache.struts.action.MESSAGE with

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:

Laurent C. said...

Thanks for that...
Fully agree, I feel your pain right now ;-(

Danny S. said...

Thanks a lot! You're right, what a pain but you solved this for me :D Thanks a lot!