show/hide this revision's text 2 added 408 characters in body

For instance, how would you declare a triple map like-

Map<String, Map<String, Map<Boolean, String>>>, with the keys being someKey1, someKey2, and someKey3 (true/false)?

I know until this-

<util:map
     id="someMap"
    map-class="java.util.HashMap"
    key-type="java.lang.String"
    value-type="java.lang.String">
    	<entry key="someKey1" value="someValue" />
</util:map>

EDIT:

Ok, this is what I want to do to reduce tons of if statements.

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

Thanks a bunch.

show/hide this revision's text 1

Java: How do you declare nested map in spring framework?

For instance, how would you declare a triple map like-

Map<String, Map<String, Map<Boolean, String>>>, with the keys being someKey1, someKey2, and someKey3 (true/false)?

I know until this-

<util:map
     id="someMap"
    map-class="java.util.HashMap"
    key-type="java.lang.String"
    value-type="java.lang.String">
    	<entry key="someKey1" value="someValue" />
</util:map>

Thanks a bunch.