Field level injection with Gin

扶醉桌前 提交于 2019-12-25 02:34:08

问题


I'm trying to do field-level injection so I don't have to pass "models" when my controllers are instantiated, like,

UserController controller = new UserController(/*No need to pass models here*/);

However my application throws NullPointerException, here my code:

UserController.java

    public class UserController implements Controller {
        @Inject private UserModel model;
        public UserController() {
          model.doSomething(); // NullPointerException
        }
    }

ClientGinModule.java

public class ClientGinModule extends AbstractGinModule {
    @Override
    protected void configure() {
        bind(UserModel.class).in(Singleton.class);
    }
}

What could be the problem?


回答1:


Use In Guice

UserController controller = injector.getInstance(UserController.class);

Use in Gin:

// Declare a method returning a UserController on your interface extending Ginjector
public UserController getUserController();

// When you need the controller, just call:
injector.getUserController();

to get a fully-injected controller.




回答2:


Your model field will be null while constructor is still running. It will be injected by GIN after the moment when UserController object is fully created. Here GWT GIN Field Level Injection you can find nice explanation about it.



来源:https://stackoverflow.com/questions/10414089/field-level-injection-with-gin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!