| Author |
JSTL Get value from HashMap inside HashMap
|
arunkumar subramanian
Ranch Hand
Joined: Jun 10, 2008
Posts: 32
|
|
The outerMap is set in Request object. In JSTL(JSP) I can get the value of outermap
I can see the values printed in JSP
{ONE_EXISTS=Y, TWO_EXISTS=Y}
How to retrieve the information of innerMap (ONE_EXISTS or TWO_EXISTS)? Please help.
|
 |
Sebastian Janisch
Ranch Hand
Joined: Feb 23, 2009
Posts: 1183
|
|
|
${requestScope.outerMap[1]['ONE_EXISTS']} should do it ...
|
JDBCSupport - An easy to use, light-weight JDBC framework -
|
 |
arunkumar subramanian
Ranch Hand
Joined: Jun 10, 2008
Posts: 32
|
|
|
That works. Thanks
|
 |
 |
|
|
subject: JSTL Get value from HashMap inside HashMap
|
|
|