I am currently facing some difficulties with Struts2 and the s:iterate tag.
I want to display a label, which is the key in the HashMap, followed by a table (the value in the HashMap) containing every elements in the ArrayList, for each elements in the HashMap.
For example,
label
----------
| test1 |
----------
| test2 |
----------
label2
----------
| test1 |
----------
| test2 |
----------
I saw a lot of example for an HashMap but didn't find one for my case.
How can I do this ?
Thanks,