我们正在使用Spring 1.2.9
但无法使用 map:util
这是我必须进行单元测试的代码的构造函数,
public ViewAction() {
screen = Collections.synchronizedMap(new HashMap());
tab = Collections.synchronizedMap(new HashMap());
}
我如何注入 hashmap 并将值添加hashmap
到configuration xml
.
注意:问题与使用哈希图无关。它是关于配置 xml 文件的。我尝试了以下但失败了
<bean name="viewactionbean" class="com.test.helper.web.ViewAction">
<property name="screen">
<map>
</map>
</property>
</bean>
配置上述 XML 文件时出错,BeanCreationException: Error Creating bean with name 'viewactionbean' defined in class path resource
注意:由于我使用的是 Spring 1.2.9,我无法使用“map:util”