Localizing field labels in struts 2
A short tip about localizing field labels in your jsp page in struts 2. First off, the message should be present in the message resource bundle. Now how do you read it into the field label?
Here's how:
<s:password label="%{getText('password')}" name="password" />
How does this work?
The framework takes care of this.
In the text filed, the expression %{getText('password')} tells the framework to lookup "password" in the message resources.
Posted at 11:34AM Feb 25, 2008 by Manveen Kaur in General | Comments[0]