You can add a map of your form to the request area as follows:
Map m = dynaform.getMap();
request.setAttribute("mapForm", m);
And then go into the jsp properties with:
${mapForm['nameOfYourFormProperty'] }
It uses JSTL. Otherwise, you can use this:
<%= ((Map)request.getAttribute("mapForm")).get("nameOfYourFormProperty") %>
source
share