我刚开始学习如何使用Guice,我在尝试配置辅助注射方面遇到了一些麻烦。我有以下界面:
public interface Individual extends Comparable<Individual>, Iterable<Long>{ ... }
它将由工厂创建。构造函数必须接收long列表:
public interface IndividualFactory {
public Individual createIndividual(List<Long> chromossomes);
}
实现类有一个@Assisted参数来接收列表:
public class IndividualImpl implements Individual {
@Inject
public IndividualImpl(
ConfigurationService configurationService,
RandomService randomService,
FitnessCalculatorService fitnessService,
@Assisted List<Long> chromossomes
) { ... }
最后,这是我的模块类:
public class SimpleModule extends AbstractModule {
@Override
protected void configure() {
bind(Individual.class).to(IndividualImpl.class);
install(new FactoryModuleBuilder().implement(Individual.class,
IndividualImpl.class).build(IndividualFactory.class));
}
问题是我运行项目时会显示此错误:
1) No implementation for java.util.ArrayList<java.lang.Long> annotated with @com.google.inject.assistedinject.Assisted(value=) was bound.
while locating java.util.ArrayList<java.lang.Long> annotated with @com.google.inject.assistedinject.Assisted(value=)
for parameter 3 at implementation.entities.IndividualImpl.<init>(IndividualImpl.java:25)
at SimpleModule.configure(SimpleModule.java:36)
如果我只删除辅助参数(不仅是注释而是参数本身),一切正常。我无法弄清楚我做错了什么。我按照我找到的所有Guice教程进行了操作,但是找不到使用List&lt;&gt ;;辅助参数的示例;但是,即使我将此参数更改为Integer,也会出现相同的错误。
答案 0 :(得分:3)
卸下:
bind(Individual.class).to(IndividualImpl.class);
使用您指定的绑定为@Inject Individual使用IndividualImpl。这没有任何意义,因为你不会在代码中的任何地方@Inject Individual。你会改为@Inject IndividualFactory。
远程可能的是
bind(Individual.class).toProvider(BlowUpWithUseFactoryExceptionProvider.class);
但这样做是没有意义的,因为默认的行为是相似的。
我可以建议:
Iterable<Long> -> DnaContaining
List<Long> -> DnaMaterial