I have a JSP that contains lots of s:text
's and s:property
's. There are also some s:iterator
's with s:text
's inside them. The issue I'm facing is that once I submit the form and try to show something on the same JSP, all the s:text
's and s:property
's which used to display the values corresponding to properties started displaying just the property names.
Like
login.username=Username
JSP:
<s:text name="login.username" />
On submitting the form and returning to the same JSP, the property name: login.username
shows up on the page where it used to display Username
. Any idea why?