如何在java spring框架中注入Map? 如果可能,请提供一些示例代码。
以下是否合法?
<property name="testMap">
<map>
<entry>
<key>
<value>test</value>
</key>
<value>
<list>
<value>String</value>
<value>String</value>
</list>
</value>
</entry>
</map>
</property>
答案 0 :(得分:30)
首先在applicationContext.xml
:
<util:list id="list1">
<value>foo@bar.com</value>
<value>foo1@bar.com</value>
</util:list>
<util:list id="list2">
<value>foo2@bar.com</value>
<value>foo3@bar.com</value>
</util:list>
<util:map id="emailMap" value-type="java.util.List">
<!-- Map between String key and List -->
<entry key="entry1" value-ref="list1" />
<entry key="entry2" value-ref="list2" />
...
</util:map>
然后在你的任何bean中使用这个Map:
<bean id="myBean" class="com.sample.beans">
<property name="emailMap" ref="emailMap" />
</bean>
答案 1 :(得分:22)
我认为在处理bean配置xml时,你的语法不合法,因为spring throws org.xml.sax.SAXParseException
。
删除<value>
周围的<list>
标记后,它应该有效。
<property name="testMap">
<map>
<entry>
<key>
<value>test</value>
</key>
<list>
<value>String</value>
<value>String</value>
</list>
</entry>
</map>
</property>
答案 2 :(得分:6)
这是我的例子:
<bean class="com.common.handlermgmnt.HandlerMapAdder">
<constructor-arg index="0" type="java.util.Map">
<map key-type="java.lang.String" value-type="com.common.ViewWidget">
<entry key="DefaultView">
<bean class="com.common.DefaultViewWidget"/>
</entry>
<entry key="AnotherView">
<bean class="com.common.AnotherViewWidget"/>
</entry>
</map>
</constructor-arg>
<constructor-arg index="1" type="com.common.handlermgmnt.HandlerManager" ref="widget_handlerManager"/>
</bean>
答案 3 :(得分:1)
我自己遇到了这个案子。如果不需要将列表值重新用作其他地方的独立bean,则可以使用此较短版本,而无需使用&#39; value-ref&#39;:
<util:map id="mymap">
<entry key="key1">
<util:list>
<value>val1</value>
<value>val2</value>
</util:list>
</entry>
<entry key="key2">
<util:list>
<value>val2</value>
<value>val3</value>
<value>val4</value>
</util:list>
</entry>
</util:map>
然后,将它连接到您的Java代码中,如下所示:
@Resource(name="mymap")
Map<String, List<String>> mapKey_List;
答案 4 :(得分:0)
使用SpEL注入它。 #{ID}。这适合我。
<。>在.xml:中<util:map id="roleLocationMap">
<entry key="ROLE_ADMIN" value-ref="listA" />
<entry key="ROLE_USER" value-ref="listB" />
</util:map>
<。>在.java中
@Autowired
public MainController(
@Value("#{roleLocationMap}") final Map<String, List<String>> roleLocationMap) {
this.roleLocationMap = roleLocationMap;
}