0

我正在使用 Spring > Annotation based injection

@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>

主()类

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();

我如何让这段代码工作。笔记:

  • 我不想在 xml 中添加部分配置并在 java 中添加部分。我也在尝试用空地图实例化。
  • 我想让它以注释方式本身工作,并在我第一次使用它之前将地图实例化为空。
4

3 回答 3

1

您可能不会向我们展示所有细节。例外没有发生,因为您的ConcurrentHashMapis null。发生这种情况是因为您在方法调用中传递了一个null对象。put()该类ConcurrentHashMap不支持null键。javadoc 状态

与 Hashtable 类似,但与 HashMap 不同,此类不允许将 null 用作键或值。

于 2013-11-16T23:31:40.257 回答
0

除非您的上下文为空,否则此处不能有 NPE。如果上下文中没有 MyClass.class,则会抛出 NoSuchBeanDefinitionException。如果您设法获取 bean 上下文,那么它会被初始化并且 myMap 是一个空映射。在其他地方寻找问题

于 2013-11-13T16:00:12.230 回答
0

首先:您需要在 MyClass 中为字段 myMap 设置 setter 和 getter。第二:您不要在 MyClass 中为 myMap 使用新操作,因为

MyClass myObj = (MyClass) context.getBean(MyClass.class);

进行注入,当然也为其分配内存。

于 2013-11-13T16:00:55.910 回答