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?