-
Notifications
You must be signed in to change notification settings - Fork 95
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
Composite key with generated value not working properly #2154
Comments
FTR, the full stack trace:
|
also note that this is working with single keys (non-composite) https://hibernate.zulipchat.com/#narrow/channel/132096-hibernate-user/topic/Weird.20error.20while.20using.20hibernate.20reactive.20and.20composite.20key/with/508017968 https://hibernate.org/reactive/documentation/3.0/reference/html_single/#_identifier_generation |
I would imagine the problem boils down to this:
Hibernate Reactive just needs its own version of |
Can we please calm down here?
Note that the Javadoc for
Hibernate Reactive does not (yet) allow If this is a problem, code contributions are always welcome! |
Gavin, the fact that we report, and track, a problem, does not mean anyone is panicking. It just means that an exception mentioning "Unable to acquire JDBC Connection" is not universally considered a clear indication that something is not supported. |
Hello, I encountered a bug when implementing composite key with generated value. My code is based on this tutorial: https://vladmihalcea.com/how-to-map-a-composite-identifier-using-an-automatically-generatedvalue-with-jpa-and-hibernate/ .
I did everything like in the link but it does not work with hibernate reactive. When i try to persist my entity i receive weird error:
When I used the same code in non-reactive hibernate everything is working as intended.
I created 2 reproducers here: https://github.com/majchrzw/composite-key .
main
branch show the issue with hibernate reactive, whilehibernate-orm
branch show the working example.Can this be somehow fixed?
The text was updated successfully, but these errors were encountered: