So far, I successfully used google guice 2. While migrating to guice 3.0, I had troubles with assisted inject factories. Assume the following code
public interface Currency {}
public class SwissFrancs implements Currency {}
public interface Payment<T extends Currency> {}
public class RealPayment implements Payment<SwissFrancs> {
@Inject
RealPayment(@Assisted Date date) {}
}
public interface PaymentFactory {
Payment<Currency> create(Date date);
}
public SwissFrancPaymentModule extends AbstractModule {
protected void configure() {
install(new FactoryModuleBuilder()
.implement(Payment.class, RealPayment.class)
.build(PaymentFactory.class));
}
}
While creating the injector, I get the following exception:
com.google.inject.CreationException: Guice creation errors:
1) Payment<Currency> is an interface, not a concrete class.
Unable to create AssistedInject factory. while locating Payment<Currency>
at PaymentFactory.create(PaymentFactory.java:1)
With the assisted inject creator from guice 2 my configuration works:
bind(PaymentFactory.class).toProvider(
FactoryProvider.newFactory(PaymentFactory.class, RealPayment.class));
The only workaround I found so far is to remove the generic parameter from the return type of the factory method:
public interface PaymentFactory {
Payment create(Date date);
}
Does anybody know, why guice 3 doesn't like the generic parameter in the factory method or what I generally misunderstood about assisted inject factories? Thanks!
TypeLiteral<Payment<Currency>>instead ofPayment.classinto theimplement? – Jeremy Heiler Apr 1 '11 at 14:21TypeLiteraldoesn't have a public constructor and if you useTypeLiteral.get(Payment.class), you get the same exception. – kraftan Apr 1 '11 at 18:50TypeLiteral.get(Types.newParameterizedType(Payment.class,Currency.class));– Jeremy Heiler Apr 1 '11 at 18:54TypeLiteralshould be created like:new TypeLiteral<Payment<Currency>>(){}. Note the{}... a subclass must be created for the full generic information to be available. – ColinD Apr 1 '11 at 19:03TypeLiteralwith theimplementmethod. – kraftan Apr 3 '11 at 20:59