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.
For example, we are still reading `org.hibernate.cfg.JdbcSettings.URL` (See https://github.com/hibernate/hibernate-reactive/blob/84a8b135531d3375477ee9b5be7a5c4d326584f9/hibernate-reactive-core/src/main/java/org/hibernate/reactive/pool/impl/DefaultSqlClientPool.java#L215) We should check the we also consider the JAKARTA ones
From [this conversation on Zulip](https://quarkusio.zulipchat.com/#narrow/channel/187038-dev/topic/Use.20hibernate-orm.20and.20hibernate-reactive.20extensions.20together/near/482363315): >you might want to look into exposing all metamodels directly in Reactive though. From what I can see only the JPA one is exposed right...
Given ```java @Entity(name = "Person") @Inheritance(strategy = InheritanceType.JOINED) public static class Person { @Id private Long id; private String name; private boolean employed; public Long getId() { return id; }...
Please consider adding a handler for the transaction rollback [here](https://github.com/hibernate/hibernate-reactive/blob/2.4.2/hibernate-reactive-core/src/main/java/org/hibernate/reactive/mutiny/impl/MutinySessionImpl.java#L495), which will consume an exception and reactive session. This will allow to register observers for that event like it's possible...
Hibernate ORM already does it, and we should be able to reuse the same approach.
Hello, I tried to do a query on a PostgresSQL database with JSON content, something like: ` select * from mytable where mytable -> 'myelement' ? 'key123'; ` It doesn't...