Hi, this is my code in my
Servlet:
And I would like get the "mapValue 0" in the map1 attribute on my result.jsp using EL, but i can't get it
JSP code:
What is wrong??, I don't know how can I get a value from a map that use Integer keys using EL. If my map uses a
String like key, I get the correct value. I think that is because in this EL expression, ${map1["0"]}, it is using "0" like a String, and map1.containsKey("0") is false.
How can I get it with EL?
Thanks