例如,RESTEasy的ResteasyWebTarget类有一个方法proxy(Class<T> clazz)
,就像Injector的getInstance(Class<T> clazz)
一样。有没有办法告诉Guice应该将某些类的创建委托给某个实例?
我的目标是Guice的以下行为:当要求注入器提供A类的新实例时,尝试实例化它;如果实例化是不可能的,请询问另一个对象(例如ResteasyWebTarget实例)来实例化该类。
我想写一个这样的模块:
@Override
protected void configure() {
String apiUrl = "https://api.example.com";
Client client = new ResteasyClientBuilder().build();
target = (ResteasyWebTarget) client.target(apiUrl);
onFailureToInstantiateClass(Matchers.annotatedWith(@Path.class)).delegateTo(target);
}
而不是
@Override
protected void configure() {
String apiUrl = "https://api.example.com";
Client client = new ResteasyClientBuilder().build();
target = (ResteasyWebTarget) client.target(apiUrl);
bind(Service1.class).toProvider(() -> target.proxy(Service1.class);
bind(Service2.class).toProvider(() -> target.proxy(Service2.class);
bind(Service3.class).toProvider(() -> target.proxy(Service3.class);
}
我考虑过实现Injector接口并将该实现用作子注入器,但是接口有太多的方法。
我可以编写一个枚举某个包中所有带注释的接口的方法,并告诉Guice使用提供程序,但这是备份方法。
答案 0 :(得分:2)
Guice不支持这个,它也没有让你听的钩子。如果找不到绑定,则它提供的钩子(ProvisionListener
&amp; TypeListener
)不会被调用。
我可以编写一个方法来枚举某些包中的所有带注释的接口,并告诉Guice使用提供程序,但这是备份方法。
这是你唯一的选择。只有当您愿意在代码库中传播target.proxy
爱时,可选注入才有效。
编辑(2017-02-28):如果您打算这样做,我已经完成了基础工作,以便在magic-provider-guice项目中实现这一目标, JDBI和Feign的示例。
实现Injector接口并将该实现用作子注入器
我不相信你可以设置一个子注入器(只需让Guice用一组模块创建一个),所以这也行不通。
答案 1 :(得分:1)
https://github.com/google/guice/wiki/Injections 查看可选注射,你可以创建一个后退。