Is it possible to display the elements of a list in a list with a foreach in a jsp?
List> elements;
i was thinking som
Your syntax will work in EL 2.2 (which is available since Servlet 3.0 containers such as Tomcat 7, Glassfish 3, etc), but not in older versions. You can then use the brace notation [] to get the desired list item by index.
...
You can if necessary use a nested to display all items.
...