How are you guys doing database access with vertx?...
# vertx
r
How are you guys doing database access with vertx? Do you use orm at all? I'd like to use the reactive PostgreSQL lib, but I would like to know if there is anything that can assist database access/assist with writing SQL
n
Vert.x has some modules for data access (covers Relational databases): https://vertx.io/docs/#data_access
Alternatively one can use a third party SQL library like JOOQ (I use this library myself and it works well with Kotlin): https://www.jooq.org/
One could use a ORM framework like Hibernate but that would make things more complex than they need to be (aka Annotitis - excessive overuse of Annotations).
w
we use JDBI http://jdbi.org/