У меня проблема с AssistedInject. Я выполнил инструкции по этой ссылке https://github.com/google/guice/wiki/AssistedInject но когда я запускаю свое приложение, я получаю сообщение об ошибке:
ERROR [2015-04-23 14:49:34,701] com.hubspot.dropwizard.guice.GuiceBundle: Exception occurred when creating Guice Injector - exiting
! com.google.inject.CreationException: Unable to create injector, see the following errors:
!
! 1) A binding to java.lang.String annotated with @com.google.inject.assistedinject.Assisted(value=) was already configured at com.demo.migrator.service.democlient.DemoAPIFactory.create().
! at com.demo.migrator.service.democlient.DemoAPIFactory.create(DemoAPIFactory.java:1)
! at com.google.inject.assistedinject.FactoryProvider2.initialize(FactoryProvider2.java:577)
! at com.google.inject.assistedinject.FactoryModuleBuilder$1.configure(FactoryModuleBuilder.java:335) (via modules: com.demo.migrator.MigrationModule -> com.google.inject.assistedinject.FactoryModuleBuilder$1)
Вот моя конфигурация модуля:
install(new FactoryModuleBuilder()
.implement(DemoAPI.class, DemoClient.class)
.build(DemoAPIFactory.class));
Вот как выглядит мой factory:
public interface DemoAPIFactory {
DemoAPI create(String _apiKey, String _secretKey);
}
Интерфейс объявлен следующим образом:
public interface DemoAPI {
//list of interface methods
}
И вот реализация
@Inject
public DemoClient(@Assisted String _apiKey,
@Assisted String _secretKey) {
secretKey = _secretKey;
apiKey = _apiKey;
baseURL = "xxxxx";
expirationWindow = 15;
roundUpTime = 300;
base64Encoder = new Base64();
contentType = "application/json";
}
Я использую набор губок dropwizard.
Зачем возникает эта ошибка?