-
It looks like Hibernate just decides to give up after assigning the pkey but before doing the insert, without leaving any error indicator. Full discussion at https://stackoverflow.com/questions/75584493/quarkus-jpa-hibernate-persist-not-persisting-no-error |
Beta Was this translation helpful? Give feedback.
Answered by
IanDarwin
Mar 1, 2023
Replies: 1 comment
-
The solution was to add transaction-type="JTA" in persistence.xml - the default results in invalid transactions under Quarkus. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
IanDarwin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The solution was to add transaction-type="JTA" in persistence.xml - the default results in invalid transactions under Quarkus.