Reputation: 1642
I've come from Scala background using Akka streams and Slick to access DB.
I'd like to introduce reactive programming to my current workplace, which is a Java shop. I've been looking at how to access PostgreSQL using reactive stack, and looks like r2dbc-postgresql
is the way to go. However, the GitHub repo mentions that the library isn't intended to be used directly:
This implementation is not intended to be used directly, but rather to be used as the backing implementation for a humane client library to delegate to.
So far, I've that Spring Data is an implementation of the r2dbc-postgresql
. However, I'd like to avoid Spring, if at all possible.
Are there any other alternatives to Spring Data or r2dbc
?
Upvotes: 1
Views: 62