我想注入Provider<T>
,如下所示:
class Work {
Provider<Tool> provider;
@Inject
Work (Provider<Tool> provider) { this.provider = provider; }
}
我的Module
看起来像这样:
protected void configure () {
bind (Tool.class).to(MyTool.class);
// Q: How do I bind this:
bind (new TypeLiteral<Provider<Tool>> {}).to (????);
// A: Turns out deleting these last 3 lines makes everything just right.
}
我想注入Provider<T>
,因为Work
类需要创建更多Tool
个对象并使用它们。另外,我不确定是否真的需要TypeLiteral<Provider<Tool>>
的绑定,但我认为这是最接近这种情况的方法。
答案 0 :(得分:3)
您是否尝试过不绑定它?我期待 Guice只为您构建一个提供程序,每次都解析非提供程序绑定。
对于每个带注释的绑定,注入器都有一个内置的绑定器。
所以我认为只需绑定Tool
即可。它至少值得一试:)(我希望听起来更自信,但我没有像我想的那样多的Guice-fu ...)