2

我一直在为这个问题苦苦挣扎,所以我来到这里与您分享。首先,我有一个要在其中注入对象的类:

public class MyClass {
 @javax.inject.Inject
 private MyInterface interface
       /.../
public void myMethod(){
interface.doTask();
}

我的界面:

public interface MyInterface {

    public abstract void doTask() throws Exception;
}

是我绑定到其实现的接口:

public class MyInterfaceImpl implements MyInterface{
  @Inject
   public MyInterfaceImpl(...) {
       /.../
    }
  @Override
   public void doTask() throws Exception{
      /.../
}

在配置中:

public class ApplicationConfig extends ResourceConfig {
 private Config config = new Config();

    public ApplicationConfig() {
        super();
        register(new MainBinder());
}
    private class MainBinder extends AbstractBinder {
         @Override
         protected void configure() {
      bind(MyInterfaceImpl.class).to(MyInterface.class).in(Singleton.class);
        }
    }
}

因此,当我运行应用程序并尝试执行我有 NPE 的方法时:

interface.doTask();

瞧,我很抱歉问这个问题,但我需要一些帮助,而且我已经尽量做到通用,希望它不会影响你的理解。

编辑:
忘了提到 MyClass() 类在另一个类中被调用,如下所示:new MyClass()

所以我认为问题可能就在那里。

4

1 回答 1

2

所以我想通了!我正在创建 myClass => 的新实例,new MyClass()因此注入无法工作!所以我注入了 MyClass() 而不是创建一个新实例并将其绑定在 ApplicationConfig 中。这工作得很好。

于 2015-07-16T07:55:18.177 回答