I have a map, kinda like this defined in my spring context file.
<util:map id="myMap">
<entry key="key1" value="myValue"/>
</util:map>
I would like to access this from my JSP inside of a webflow like this
<c:forEach var="item" items="${myMap}">
<div>
<c:out value="${item.key}"/>
<div>
</c:forEach>
How do I do that? I am defining the map in the spring context, but its not being picked up in the webflow.
it works just fine if I have it in a regular java view controller, but the Webflow has an XML file that handles the view states, and I'm not sure how to pass variables into the view states beyond that.