Just in case somebody comes around here again... The solution as of today seems to be a "chained linked binding", see http://code.google.com/p/google-guice/wiki/LinkedBindings.
The parent module may bind(TransactionLog.class).to(DatabaseTransactionLog.class); which you can override in your child module by bind(DatabaseTransactionLog.class).to(MySqlDatabaseTransactionLog.class); I.e. you bind the right-hand side of the original binding. Regards, Jörg -- You received this message because you are subscribed to the Google Groups "google-guice" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-guice/-/MmGj-sIQZugJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-guice?hl=en.
