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

This reverts commit 163eee7a4e9b6ee6b4ce183c735b43fbec795ae2.

2.0

The `strategy` attribute in `@GenericGenerator` is deprecated. The recommended approach is to use the `type` attribute. But, [ReactiveIdentifier](https://github.com/hibernate/hibernate-reactive/blob/main/hibernate-reactive-core/src/main/java/org/hibernate/reactive/id/ReactiveIdentifierGenerator.java) doesn't implement the interface making it harder for the user to create...

A number of tests are currently disabled due to errors for specific dialects. Re-run these tests and enable if tests work.

This source is working. ``` public CompletionStage save(Shop shop, Stage.Session session) { return session.persist(shop) .thenApply(unused -> shop); } ``` but upgrade hibernate-core to 2.0.5, this source is not working. ```...

See [the topic on Zulip](https://quarkusio.zulipchat.com/#narrow/stream/187030-users/topic/Hibernate.20Reactive.20problem.20with.20RESTEasy.20Reactive/near/404894144)

bug

`hibernate.order_inserts` and `hibernate.order_updates`.

documentation

Triaging recent bug reports, it seems like some people made some mistake in BOM cocktails ending up to pick a micro of Hibernate ORM slightly behind the version expected by...

Hi, I'm using Hibernate Reactive 2.0.6.Final and getting HR000075 when I try to call a custom constructor in an HQL query book (from https://github.com/hibernate/hibernate-reactive/tree/main/examples/session-example, but with a custom constructor): ```...

bug

In Micronaut Data we have a reported issue with Hibernate Reactive and context switching. https://github.com/micronaut-projects/micronaut-data/issues/2165 There can be the following use-case: - Open session or TX (Hibernate Reactive opens a...

I'm creating an issue so that I don't forget to review it. See https://discourse.hibernate.org/t/custom-sqlstatementlogger-setup/7680/6

good first issue