Java: How do you declare nested map in spring framework? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T09:16:50Z http://stackoverflow.com/feeds/question/957407 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/957407/java-how-do-you-declare-nested-map-in-spring-framework 1 Java: How do you declare nested map in spring framework? Alex 2009-06-05T18:37:24Z 2009-06-15T12:55:51Z <p>For instance, how would you declare a triple map like-</p> <pre><code>Map&lt;String, Map&lt;String, Map&lt;Boolean, String&gt;&gt;&gt;, with the keys being someKey1, someKey2, and someKey3 (true/false)? </code></pre> <p>I know until this-</p> <pre><code>&lt;util:map id="someMap" map-class="java.util.HashMap" key-type="java.lang.String" value-type="java.lang.String"&gt; &lt;entry key="someKey1" value="someValue" /&gt; &lt;/util:map&gt; </code></pre> <p>EDIT:</p> <p>Ok, this is what I want to do to reduce tons of if statements.</p> <pre><code>123: //some key 1 abc: //some key 2 true: //some key 3 a //some value false: //some key 3 b //some value 456: def: true: c false: d </code></pre> <p>Thanks a bunch.</p> http://stackoverflow.com/questions/957407/java-how-do-you-declare-nested-map-in-spring-framework/957428#957428 5 Answer by Adam Paynter for Java: How do you declare nested map in spring framework? Adam Paynter 2009-06-05T18:41:28Z 2009-06-06T09:31:40Z <p>Perhaps this would work:</p> <pre><code>&lt;util:map id="someMap"&gt; &lt;entry key="123"&gt; &lt;value&gt; &lt;map&gt; &lt;entry key="abc"&gt; &lt;value&gt; &lt;map key-type="java.lang.Boolean"&gt; &lt;entry key="true" value="a"/&gt; &lt;entry key="false" value="b"/&gt; &lt;/map&gt; &lt;/value&gt; &lt;/entry&gt; &lt;/map&gt; &lt;/value&gt; &lt;/entry&gt; &lt;entry key="456"&gt; &lt;value&gt; &lt;map&gt; &lt;entry key="def"&gt; &lt;value&gt; &lt;map key-type="java.lang.Boolean"&gt; &lt;entry key="true" value="c"/&gt; &lt;entry key="false" value="d"/&gt; &lt;/map&gt; &lt;/value&gt; &lt;/entry&gt; &lt;/map&gt; &lt;/value&gt; &lt;/entry&gt; &lt;/util:map&gt; </code></pre> http://stackoverflow.com/questions/957407/java-how-do-you-declare-nested-map-in-spring-framework/995955#995955 0 Answer by Mike Kushner for Java: How do you declare nested map in spring framework? Mike Kushner 2009-06-15T12:55:51Z 2009-06-15T12:55:51Z <p>Did you really get Adam's code to compile? I had to remove the outer value-tags to make it work.</p> <pre><code>&lt;util:map id="someMap"&gt; &lt;entry key="123"&gt; &lt;map&gt; &lt;entry key="abc"&gt; &lt;map key-type="java.lang.Boolean"&gt; &lt;entry key="true" value="a"/&gt; &lt;entry key="false" value="b"/&gt; &lt;/map&gt; &lt;/entry&gt; &lt;/map&gt; &lt;/entry&gt; &lt;entry key="456"&gt; &lt;map&gt; &lt;entry key="def"&gt; &lt;map key-type="java.lang.Boolean"&gt; &lt;entry key="true" value="c"/&gt; &lt;entry key="false" value="d"/&gt; &lt;/map&gt; &lt;/entry&gt; &lt;/map&gt; &lt;/entry&gt; &lt;/util:map&gt; </code></pre> <p>Or am I missing something? =)</p>