我正在使用spring expression从一些配置中读取一个地图。现在我怎样才能构建一个bean。
<bean id="xyz" class= "java.util.Map" >
<!-- how to pass $xyz to this -->
<!-- i know how to pass static entries to it using entry tag , but how abut map? !-->
</bean>
如何将我的地图传递给bean xyz?
对于String,可以使用以下代码。
<bean id="x" class ="java.util.String >
<construtor-arg> $x
</constructort-arg>
</bean>
但是对于地图,没有将地图作为inp
的构造函数答案 0 :(得分:4)
使用Spring util架构
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util.xsd">
<bean id="yourBean" class="yourBean">
<property name="aPrameterOfTypeMapInYourBean">
<map>
<entry key="first" value="hallo"/>
<entry key="second" value="world"/>
<entry key="third" value="that is easy"/>
<entry key="forth" value="and hopefully solve your problem"/>
<entry key="yourParam" value="$x"/>
</map>
</property>
</bean>
</beans>
Spring也支持合并集合(<map>
应该有一个合并属性)。
因此,您需要定义两个映射,并将其中一个映射指定为另一个映射的父映射。
更多详情: