The road less taken

« On code monkeys and... | Main | JPA Query with wildc... »
Monday Feb 25, 2008

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.

Comments:

Post a Comment:
  • HTML Syntax: NOT allowed