I basically want to set my JSP parameters with Map
values.
I am trying to do the following thing in my JSP:
<input type="hidden" name="reportSubCategories" value="<%= reportsForm.getReportSubCategories()%>" />
I know that a parameter can only be set with a String
type variable and hence, the above code doesn't work.But still, is there any workaround?