-
Hello. I have my main quarkus application in module A, that imports another module DB using
Both using arc cdi with
Now, the beans from the project DB are correctly created and managed by quarkus (I can see them in dev tools, also the exception below states that they exist).
because:
For some reason, quarkus does not see the qualifier annotations defined in module DB used for injection in module A, but can see them when instantiating beans defined in module DB |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
/cc @Ladicek (arc), @evanchooly (kotlin), @geoand (kotlin), @manovotn (arc), @mkouba (arc) |
Beta Was this translation helpful? Give feedback.
-
Problem solved, I forgot the annotation target in the kotlin class when injecting, as so:
|
Beta Was this translation helpful? Give feedback.
Problem solved, I forgot the annotation target in the kotlin class when injecting, as so: