Guice 注入空指针

我们尝试使用 Guice 重构项目。这个想法是将所有语言界面绑定到一个创建对象,如法语波兰语

我们有一个用于绑定的模块:

public class StandardModule extends AbstractModule {

    @Override
    protected void configure() {

       bind(Language.class).to(Polish.class);

    }
 }

以及使用此注入对象的类(AboutDialog.java):

@Inject Language language;

public AboutDialog(JFrame parent) {
    super(parent, "", true);
    this.language=language;
    this.setTitle(language.getLanguageInUse().getString("AboutDialog.title"));
    this.parent = parent;
    try {
        jbInit();
    } catch (Exception e) {
        e.printStackTrace();
    }
    pack();
}

结果:

java.lang.NullPointerException at net.sf.jmoney.gui.AboutDialog.<init>(AboutDialog.java:67)

第 67 行是:

this.setTitle(language.getLanguageInUse().getString("AboutDialog.title"));

我们的界面是:

public interface Language {

    public ResourceBundle getLanguageInUse();
}

波兰语类是:

public class Polish implements Language {

    private ResourceBundle languageInUse;

    public Polish() {
        languageInUse = ResourceBundle.getBundle(Constants.LANGUAGE_PL);
    }

    public ResourceBundle getLanguageInUse() {
        return languageInUse;
    }


}

我们迷失了...


答案 1

您正在使用“现场注入”。这将使在构造函数中使用注入的值变得困难;即使 Guice 要创建对象(现在没有发生)或者您要使用 ,构造函数也会在注入器有机会注入所需的字段之前运行。injector.injectMembers(aboutDialog)

创建一个采用可变参数和注入参数的类有点棘手。这为您提供了几个选项:

  • 注入 JFrame。如果您知道在创建构造函数时将使用什么JFrame,那么只需在模块中使用即可。然后Guice可以完全创建AboutDialog。bind(JFrame.class).toInstance(myJFrame);

  • 手动创建工厂。这样,您就可以注入并调用即可获得.它看起来像这样:AboutDialog.FactorycreateAboutDialog

    public class AboutDialog extends JDialog {
    
      /** Injectable factory. */
      public static class Factory {
        @Inject private Language language;
    
        public AboutDialog create(JFrame parent) {
          return new AboutDialog(parent, language);
        }
      }
    
      // no @Inject parameter; you're calling "new" yourself above!
      public AboutDialog(JFrame parent, Language language) {
        super(parent, "", true);
        this.language = language;
        // ... other initialization
      }
    }
    
  • 创建一个工厂,让Guice通过辅助注射为您连接。

    public class AboutDialog extends JDialog {
    
      public interface Factory {
        public AboutDialog create(JFrame parent);
      }
    
      // you need the @Inject, and also the @Assisted to tell Guice to
      // use the parameter instead of Guice bindings
      @Inject
      public AboutDialog(@Assisted JFrame parent, Language language) {
        super(parent, "", true);
        this.language = language;
        // ... other initialization
      }
    }
    
    public class StandardModule extends AbstractModule {
      @Override protected void configure() {
        bind(Language.class).to(Polish.class);
    
        // here every method in AboutDialog.Factory will be implemented
        // to create the method's return type [AboutDialog] based on
        // the parameters (like JFrame) and the bindings (like Language)
        install(new FactoryModuleBuilder().build(AboutDialog.Factory.class));
      }
    }
    

如问题注释中所述,请确保您正在获取(或通过ed构造函数/字段或从其自身获取,否则Guice将不知道注入参数。AboutDialogAboutDialog.Factory@InjectInjector


答案 2

我假设你没有在Guice的帮助下创建你的。AboutDialog

您可以做的是使用 where 是 .injector.injectMembers(this)thisAboutDialog

最好的方法是由Guice创建,因此所有成员都将被注入。AboutDialog


推荐