I have a java class which adds keys and values to a map, which works fine. I need to access these values in a JSP page
During debugging this is the structure of the map:
riskIdx.month={Feb=40, Mar=50, Apr=10, May=20, Jan=30}
This is how I am trying to access the values of the map in the JSP page:
chart(${riskIdx.Jan},${riskIdx.Feb},${riskIdx.Mar},${riskIdx.Apr},${riskIdx.May})
This doesnt work. What am I doing wrong? Please help.