I need to access two dependent ArrayList in JSTL in a nested loop. First I iterate a String type ArrayList and then the values from the loop will be used to access another ArrayList.
<c:forEach items="${productCatagoryList}" var="category">
<c:forEach items=${${category}} var="item">
${item.productName}
</c:forEach>
</c:forEach>
Here from the first foreach loop I'll get the category as String value and for all these category, there is another ArrayList containing some products.
So for each of the String value from the first loop will be used for the second foreach loop.
The second line of the code causes an error. How to use the results of the first loop in the second loop ans items?
You can create a method in the same class with parameter
category
. It should be a string type. Then you can call this method from EL. Newer EL allows calling methods that you can use instead of a custom function.If you map categories to product like this
Then you can simply use a getter for this variable