Replies: 1 comment 3 replies
-
Did you find anything with this? We're getting the same things when upgrading to any version 3.9 and above. It's not clear what the issue is. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
If have an applicationScoped class XXX in my infra jar.
Have also an application, which has this jar as a dependency injected that class.
This injection works fine when I worked with quarkus version 3.8.1.
Once I've upgraded to 3.9.1 I'm getting error:
Unsatisfied dependency for type XXX and qualifiers [@default]
I tried to find anything in release notes for 3.9.1 that is related to that, but without success.
Anyone can assist?
Thanks
To give some code snippets:
I have dependency on this jar in my pom.xml and in one of the classes I have:
Unsatisfied dependency for type com.fin.esb.infra.routes.EsbInfraRouteResponseImpl and qualifiers [@default]
- injection target: com.fin.esb.routes.RouteRequestAmq2IbmMq#esbInfraRouteResponse
- declared on CLASS bean [types=[org.apache.camel.builder.BuilderSupport, org.apache.camel.Ordered, org.apache.camel.CamelContextAware, org.apache.camel.spi.ResourceAware, com.fin.esb.routes.RouteRequestAmq2IbmMq, org.a
pache.camel.spi.HasCamelContext, org.apache.camel.RoutesBuilder, java.lang.Object, org.apache.camel.builder.ModelRoutesBuilder, org.apache.camel.builder.RouteBuilder], qualifiers=[@default, @Any], target=com.fin.esb.routes.RouteRequestAmq2IbmMq]
at io.quarkus.arc.processor.BeanDeployment.processErrors(BeanDeployment.java:1516)
at io.quarkus.arc.processor.BeanDeployment.init(BeanDeployment.java:320)
I'll mention again:
When I have in my pom.xml:
<quarkus.platform.version>3.8.3</quarkus.platform.version>
All is working fine.
Once I upgraded to
<quarkus.platform.version>3.9.1</quarkus.platform.version>
I started getting above error.
Beta Was this translation helpful? Give feedback.
All reactions