我正在使用Spring>基于注释的注入
@Component
public class MyClass {
private ConcurrentHashMap<String, String> myMap;
public MyClass() {
myMap = new ConcurrentHashMap<String, String>();
}
public void foo() {
myMap.put("a", "b");
}
}
XML
<?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:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<context:component-scan base-package="com.basePackage" />
<context:annotation-config/>
</beans>
main()类
public class MyMain() {
public static void main(String[] args)
// [EDITED. ADDED NOW - BEGIN]
ApplicationContext context = new GenericXmlApplicationContext(
"myApplicationContext.xml");
// [EDITED. ADDED NOW - END]
MyClass myObj = (MyClass) context.getBean(MyClass.class);
myObj.foo();
}
}
myObj.foo()提出了一个NPE。 我期待的是:当我获得bean时,调用map的构造函数并实例化map并使代码顺利运行。
这两点都没有用:
private ConcurrentHashMap myMap = new ConcurrentHashMap();
如何使此代码正常工作。 注意:
答案 0 :(得分:1)
您可能没有向我们展示所有细节。由于您的ConcurrentHashMap
为null
,因此例外情况并非如此。之所以发生这种情况,是因为您在null
方法调用上传递了put()
个对象。 ConcurrentHashMap
类不支持null
个键。 javadoc陈述
与Hashtable类似,但与HashMap不同,此类不允许使用null 用作键或值。
答案 1 :(得分:0)
除非您的上下文为空,否则此处不能有NPE。如果上下文中没有MyClass.class,则抛出NoSuchBeanDefinitionException。如果你设法让bean得到上下文,那么它就会被初始化,而myMap就是一张空地图。寻找其他问题
答案 2 :(得分:0)
首先:你需要setter&amp; myClass中的getter用于字段myMap。 第二:你不能在myClass for myMap中使用新操作,因为
MyClass myObj = (MyClass) context.getBean(MyClass.class);
注射,当然也为它分配内存。