I have problems using the predefined resourceBundle EL variable when the properties are named using dot notation.
This works fine
<action-state id="...">
<evaluate expression="someAction.say(resourceBundle.simplePr operty)"/>
...
</action-state>
This doesn't work
<action-state id="...">
<evaluate expression="someAction.say(resourceBundle.not.a.si mple.property)" />
...
</action-state>
So my question is:
How do I get the value for the property named 'not.a.simple.property' using the EL resourceBundle variable?


Reply With Quote