I am having map like this,
Map<Integer,ArrayList<Object>> myMap = new LinkedHashMap<Integer,ArrayList<Object>>();
Now i have to iterate this Map and then the ArrayList inside the map. How can i do this using jstl.
|
|
|
You can use JSTL c:forEach tag to iterate over collections and maps. In case of maps, every iteration will give you a Here's a basic example:
In your particular case, the
The To understand better what's all going on here, here's a raw Java translation:
|
|||||||||||||
|
|
Did you try something like this?
|
|||
|
|
you haven't closed c tag.try out this
|
||||
|
|