text tag and action support getText does not resolve properties having a prefix
matching the name of a bean on the value stack
------------------------------------------------------------------------------------------------------------------------------
Key: WW-1983
URL: https://issues.apache.org/struts/browse/WW-1983
Project: Struts 2
Issue Type: Bug
Affects Versions: 2.0.6
Reporter: Nicolas Romanetti
Here is a simple example:
On the value stack I have a bean named currentAccount.
In a properties resource file I have the following properties defined:
currentAccount.firstNameLabel=Prénom
myCurrentAccount.firstNameLabel=Prénom
In my JSP (result of an action) I have:
==============================
<s:property value="currentAccount.firstName" />
-- Using text tag
<s:text name="currentAccount.firstNameLabel" />
<s:text name="myCurrentAccount.firstNameLabel" />
-- Same test with getText...
<s:property value="%{getText('currentAccount.firstNameLabel')}" />
<s:property value="%{getText('myCurrentAccount.firstNameLabel')}" />
The output result is:
=================
Nicolas
-- Using text tag
firstNameLabel
Prénom
-- Same test with getText...
firstNameLabel
Prénom
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.