We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hibernate ORM stateless insert returns the id:
Object insert(String entityName, Object entity);
The one in Hibernate Reactive should return CompletionStage<Object> but returns CompletionStage<Void>. Same for Mutiny.
CompletionStage<Object>
CompletionStage<Void>
The upgrade to ORM 7 seems a good place to apply these changes.
@gavinking Was this a design choice or something that changed over time?
The text was updated successfully, but these errors were encountered:
Um, TBH I don't really recall, but I don't think it's essential. You can always just get the id from the entity itself.
Sorry, something went wrong.
No branches or pull requests
Hibernate ORM stateless insert returns the id:
The one in Hibernate Reactive should return
CompletionStage<Object>
but returnsCompletionStage<Void>
.Same for Mutiny.
The upgrade to ORM 7 seems a good place to apply these changes.
@gavinking Was this a design choice or something that changed over time?
The text was updated successfully, but these errors were encountered: