在我的课堂上,我有这个二传手
public void setSomehing(Map<Object, Class<?>> beans){
...
}
Object
是一些bean,Class
是它的接口。我尝试更多的组合,但我总是得到
cvc-complex-type.2.3:
元素 'map' 不能有字符 [children],因为该类型的内容类型是仅元素。
一些组合是:
<bean id="rmiServerBeanFactory" class="org.infobip.spring.remoting.server.StandaloneCompositeRmiServerBeanFactory">
<property name="something">
<map>
<entry key-ref="myBean" value="org.mypackage.MyBeanInterface"/>
</map>
</property>
</bean>
请帮忙。如何在 spring.xml 中设置它?