hibernate-reactive icon indicating copy to clipboard operation
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.

Results 156 hibernate-reactive issues
Sort by recently updated
recently updated
newest added

Related to [this question](https://stackoverflow.com/questions/78495982/hibernate-reactive-and-sharedprimarykeygenerator) on Stack Overflow. Entity Example: ```kotlin @Id @GeneratedValue(generator = "SharedPrimaryKeyGenerator") @GenericGenerator( name = "SharedPrimaryKeyGenerator", strategy = "foreign", parameters = [Parameter(name = "property", value = "bookLineItem")] )...

testing

Hi there, I'm having some trouble implementing Hibernate Reactive Panache while also using the async client of Azure Blob SDK (which uses Project Reaktor under the hood). I have a...

`@GenericGenerator` has been deprecated in 6.5. See: https://github.com/hibernate/hibernate-orm/blob/main/hibernate-core/src/main/java/org/hibernate/annotations/GenericGenerator.java#L64

enhancement

Hi, this is related to this issue https://github.com/hibernate/hibernate-reactive/issues/1896. > Hi, when using Quarkus with reactive hibernate and trying to run this findById(id, LockModeType.PESSIMISTIC_WRITE), I get following Error: JPA error: java.lang.UnsupportedOperationException...

Original quarkus issue: https://github.com/quarkusio/quarkus/issues/40374

bug

See https://in.relation.to/2024/04/29/orm-66Alpha1/

upgrade

We should wait for a stable version of ORM. In the meanwhile, the repository is here: https://github.com/hibernate/hibernate-reactive/tree/wip/orm7

enhancement

We have created a test for [the support of `@SoftDelete`](https://docs.jboss.org/hibernate/orm/6.5/userguide/html_single/Hibernate_User_Guide.html#soft-delete): [SoftDeleteTest](https://github.com/hibernate/hibernate-reactive/blob/4650538d32fb9e8095a24ae373c8b5397f8edaac/hibernate-reactive-core/src/test/java/org/hibernate/reactive/SoftDeleteTest.java#L44) The problem is that we only test entities that are mapped on a single table in the database. And,...

enhancement
good first issue
testing