| Author |
setting parameters for message
|
lynn fann
Ranch Hand
Joined: Oct 15, 2006
Posts: 115
|
|
what should i do, so that i can set the parameter to the message string. i try the following, but i get "null" for the {0}. codes: resource bundle: thanks.
|
 |
Jim Hardin
Ranch Hand
Joined: Aug 02, 2006
Posts: 46
|
|
Lynn, It looks to me like you may have a typo -- you have
String limit="7"; ActionMessage actionMsg= new ActionMessage("notice","msg.notice",limit);
where I think you want
String limit="7"; ActionMessage actionMsg= new ActionMessage("msg.notice",limit);
The first argument/actual-parameter to all ActionMessage constructors is the key into the Resource Bundle. Looks like a simple typo... -Jim
|
 |
lynn fann
Ranch Hand
Joined: Oct 15, 2006
Posts: 115
|
|
i try String limit="7"; ActionMessage actionMsg= new ActionMessage("msg.notice",limit); but i still get a null for the {0}
|
 |
 |
|
|
subject: setting parameters for message
|
|
|