How is it that this exists:
But this does not?Code:<util:properties id="whatever"> <prop key="1">Spring is easy.</prop> <prop key="2">Spring is useful.</prop> <prop key="3">Spring is fun to learn.</prop> </util:properties>
I need a HashMap, not a Hashtable/Properties object.Code:<util:map id="whatever"> <entry key="1">Spring is easy.</entry> <entry key="2">Spring is useful.</entry> <entry key="3">Spring is fun to learn.</entry> </util:map>
What I really want is this:
Code:<util:map id="myQueryMap"> <entry key="query1"><[!CDATA[ select id from table when id > 1]]></entry> </util:map>


Reply With Quote
