-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JdbcTemplate is missing a resource bunde for native #5666
JdbcTemplate is missing a resource bunde for native #5666
Comments
It's more likely an issue of quarkus but not camel? |
Right now, it is unclear. @gastaldi was able to reproduce something on the quarkus-end, but not the problem I have described here. |
I'd expect quarkusio/quarkus#38362 to fix this. @turing85 you mean it does not? |
@turing85 just to be clear, I did reproduce the same error using a snippet like in https://www.baeldung.com/java-jdbc-rowset, and the linked PR fixes it. When I tested with your reproducer project, I see the |
It should be fixed in Quarkus main now, thanks for the report and the reproducer! |
Okay, this means we can close this issue then 😄 Thanks for the quick fix! |
Bug description
When we use
JdbcTemplate.queryForRowSet(...)
, the application will fail in native mode with the following stack trace:Reproducer:
Affected quarkus versions: at least
3.2.8.Final
to3.6.7
.Comment: I opened the issue here since the dependency that provides
JdbcTemplate
(spring-jdbc
) is a transitive dependency of, e.g.,camel-quarkus-sql
. As far as I know, the quarkus core does not importspring-jdbc
anywhere.The text was updated successfully, but these errors were encountered: