hibernate-reactive
hibernate-reactive copied to clipboard
A reactive API for Hibernate ORM, supporting non-blocking database drivers and a reactive style of interaction with the database.
We should create a test case template for Hibernate Reactive: https://github.com/hibernate/hibernate-test-case-templates
This test checks that we throw the right exception when session run in the wrong `VertxContext`. I cannot figure out why it doesn't fail on CI. This is the test:...
See #333 A draft to check that everything works. I still need to update the docs and add some bits.
@aguibert did some work to automate the selection of the database driver when creating a `Pool`. Currently we still have a legacy workaround for 3.9.1. We need to clean that...
@Sanne thinks there might be a problem with batch inserts/updates not happening efficiently, and it would help to log some information to help diagnose this.
The `@CollectionId` annotation is the equivalent of the old `` mapping. Now, this isn't something that is defined by the JPA spec, and I doubt that many people use it....
Follows #996 This would mean move the code that uses Mutiny in a separate module. We could require users to include it in their project as an additional dependency (option...
It seems that a common use case is to add a field of type `Map` to an entity and then save it as a `json` column when a database supports...
It's a built-in type but we don't mention it in the docs
Follows #536 See #903 for an example with PostgreSQL Requires a fix from Vert.x SQL Client: https://github.com/eclipse-vertx/vertx-sql-client/issues/1033 See [SchemaArrayValidationTestBase](https://github.com/hibernate/hibernate-reactive/blob/9089e5bacd63ebcdb67b89f9c9d8827eff4cbd09/hibernate-reactive-core/src/test/java/org/hibernate/reactive/schema/SchemaValidationTestBase.java#L41)