In struts2, I used the built-in OGNL in struts2, naming my inputs as <input name='bag["item"].property'>
Which got into getters / setters getBag().get("item").setProperty(value)
I upgraded to struts 2.2.1, and suddently they no longer work: getter never gets called.
The Internet does not say anything about using OGNL in parameters, as if no one ever made complex forms.
How to return my map settings?
source
share