Binding @Provides method as eager singleton

放肆的年华 提交于 2019-12-04 17:48:17

问题


I want to make a binding using a method annotated with @Provides into an eager singleton. I've found bug 216, which suggests this isn't possible, but doesn't mention the @Provides annotation explicitly.

I currently have a class that requests the eager singletons in time by itself being a singleton, but it's not a very nice solution.

public class LogicModule extends AbstractModule {
    @Override public void configure() {
        bind(SomeDep.class);
        bind(MyWorkaround.class).asEagerSingleton();
    }

    // cannot add eager requirement here
    @Provides @Singleton Logic createLogic(SomeDep dep) {
        return LogicCreator.create(dep);
    }

    private static class MyWorkaround {
        @Inject Logic logic;
    }
}

Can I change something near the comment that would make the workaround class obsolete?


回答1:


Why not to use

bind(Logic.class).toInstance(LogicCreator.create(dep)); 
//ohh we missing dep

then we can do this

class LogicProvider implements Provider<Logic> {

    private final SomeDep dep;

    @Inject
    public LogicProvider(SomeDep dep) {
      this.dep = dep;
    }

    @Override
    public Logic get() {
      return LogicCreator.create(dep);
    }

}

and then

bind(Logic.class).toProvider(LogicProvider.class).asEagerSingleton();

You can even pass SomeDep dep to your provider as Provider<SomeDep> and then call providerDep.get() in LogicCreator.create() that would be a bit more robust.



来源:https://stackoverflow.com/questions/22147817/binding-provides-method-as-eager-singleton

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