繁体   English   中英

Guice注入空指针

[英]Guice injection null pointer

我们尝试用Guice重构一个项目。 我们的想法是将所有语言界面绑定到一个像法语波兰语这样的混合对象。

我们有一个绑定模块:

public class StandardModule extends AbstractModule {

    @Override
    protected void configure() {

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

    }
 }

以及使用此注入对象的classe(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;
    }


}

我们迷路了...

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

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

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

  • 手动创建工厂。 这样你可以注入AboutDialog.Factory并只需调用create来获取你的AboutDialog 它看起来像这样:

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

如问题评论中所述,请确保您通过@Inject ed构造函数/字段或从Injector本身获取AboutDialog (或AboutDialog.Factory ,否则Guice将不知道注入参数。

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

你可以做的是使用injector.injectMembers(this) ,其中thisAboutDialog

最好的办法是在AboutDialog将吉斯被创建的,所以所有成员都将被注入。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM