How can I bind multiple instances to one interface in HK2 and Jersey?

570 Views Asked by At

I am trying to use DI to inject WebTarget into my class in Jersey

I have this binding in my binder:

val WTInstance1 : WebTarget = /* code creating the webTarget instance */
val WTInstance2 : WebTarget = /* code creating the webTarget instance */

bind(WTInstance1).to(WebTarget::class.java).named("target1")
bind(WTInstance2).to(WebTarget::class.java).named("target2")

I have this class:

class SomeService() {
    @Inject
    @Named("target2")
    lateinit var target : WebTarget
}

I would expect WTInstance2 to be injected, but I get WTInstance1 (actually I always get the first binded instance)

Questions: Do I understand using @Named annotation concept correctly? If so, any idea why it does not work?

0

There are 0 best solutions below