Guice : Is it possible to get all binded instances given a particular parent/interface/annotation?

StackOverflow https://stackoverflow.com/questions/12629069

  •  04-07-2021
  •  | 
  •  

Question

I know this may not be dependency injection in its purest form, but let's say I have to use :

@Inject
Injector injector;

With this injector, is it possible to get all the binded instances given :

  1. A parent class each instances would inherited from?
  2. An interface each instances would implement?
  3. An annotation each instances would have?

I see the Injector#findBindingsByType() method but I'm not sure if it can help in that regard.

Was it helpful?

Solution

You can inject a list of a given type associated through multibindings. Check out the docs:

https://github.com/google/guice/wiki/Multibindings

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top