在我的 guice 模块中,我有多个工厂,如下所示:
install(new FactoryModuleBuilder().implement(SportsCar.class,Ferrari.class).build(FerrariFactory.class));
install(new FactoryModuleBuilder().implement(LuxuryCar.class,Mercedes.class).build(MercedesFactory.class));
这两个工厂都有以下 create 方法,该方法采用辅助元素:
Ferrari create(@Assisted Element partsElement);
Mercedes create(@Assisted Element partsElement);
在 CarChooser 类中,我得到了 Ferrari 或 Mercedes 的实例,如下所示:
@Inject
public CarChooser(FerrariFactory ferrariFactory , MercedesFactory mercedesFactory )
{
this.ferrariFactory = ferrariFactory;
this.mercedesFactory = mercedesFactory;
}
在同一个班:
if(type.equals("ferrari"))
ferrariFactory.create(partsElement);
else if (type.equals("mercedes"))
mercedesFactory.create(partsElement);
...
现在,我正在尝试使这个 CarChooser 类对扩展开放但对修改关闭。即如果我需要添加另一个工厂,我不应该将它声明为变量+将它添加到构造函数+为相应的新类型添加另一个if子句。我打算在这里使用 ServiceLoader 并声明一个接口 CarFactory 将由所有工厂(例如 FerrariFactory、MercedesFactory 等)实现,并且所有实现都将具有 getCarType 方法。但是如何使用 Service Loader 调用 create 方法?
ServiceLoader<CarFactory> impl = ServiceLoader.load(CarFactory.class);
for (CarFactory fac: impl) {
if (type.equals(fac.getCarType()))
fac.create(partsElement);
}
}
如果可行的话是正确的方法(我什至不确定这是否可行)。或者有没有更好的方法来做同样的事情?
感谢帖子的第一条评论,我知道我想使用 MapBinder 。我写了一个由 FerrariFactory 和 MercedesFactory 扩展的 CarFactory。所以我添加以下内容:
MapBinder<String, CarFactory> mapbinder = MapBinder.newMapBinder(binder(), String.class, CarFactory.class);
mapbinder.addBinding("Ferrari").to(FerrariFactory.class);
mapbinder.addBinding("Mercedes").to(MercedesFactory.class);
但由于上述代码的 .to 部分是抽象类,我得到一个初始化错误,即 FerrariFactory 未绑定到任何实现。我应该在这里将它绑定到使用 FactoryModuleBuilder 声明的正确 Assisted Inject Factory 吗?