JetBrains / Exposed

Kotlin SQL Framework
http://jetbrains.github.io/Exposed/
Apache License 2.0
8.28k stars 690 forks source link

Can Exposed be used in quarkus #1506

Closed jian-sun closed 11 months ago

jian-sun commented 2 years ago

Can Exposed be used in quarkus/reactive application

bog-walk commented 11 months ago

Historically there have been some H2-related issues with using Exposed + Quarkus, but they have been resolved. So the answer is yes to Quarkus (and with GraalVM native image). However, not so much to the reactive side, as Exposed does not currently support a Reactive API. The latter is a long-standing issue on the roadmap that will be addressed.

If you do (or have been) using them together, please don't hesitate to report any limitations/issues on YouTrack, so that we can attempt to further assist you.

BierDav commented 5 months ago

Is there a guid/sample or so how to implement exposed in quarkus correctly? I mean where to initialize the Database, how to manage transactions and so on. The classical use cases.