Documentation:
-
Event driven
-
Lightweight
-
Built-in connection pooling
-
Prepared queries caching
-
Publish / subscribe using Postgres
LISTEN/NOTIFY
-
Batch and cursor support
-
Row streaming
-
java.util.stream.Collector
row set transformation -
Command pipeling
-
RxJava API
-
Direct memory to object without unnecessary copies
-
Java 8 Date and Time
-
SSL/TLS
-
Unix domain socket
-
HTTP/1.x CONNECT, SOCKS4a or SOCKS5 proxy
-
Request cancellation
The Reactive Postgres Client currently supports the following data types
_ | Value | Array | ||
---|---|---|---|---|
Postgres |
Java |
Supported |
JAVA |
Supported |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✕ |
|
|
✔ |
|
✕ |
|
|
✔ |
|
✕ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
|
|
✔ |
|
✔ |
Note: PostgreSQL JSON and JSONB types are represented by the following Java types:
-
java.lang.String
-
java.lang.Number
-
java.lang.Boolean
-
io.vertx.core.json.JsonObject
-
io.vertx.core.json.JsonArray
-
io.vertx.sqlclient.Tuple#JSON_NULL
for representing the JSON null literal
The following types
MONEY, BIT, VARBIT, MACADDR, CIDR, MACADDR8, XML, HSTORE, OID, VOID
are not implemented yet (PR are welcome).
Out of the box, the test suite runs an embedded Postgres by default.
You can change the version of the embedded Postgres by passing a property embedded.postgres.version
like this:
> mvn test -Dembedded.postgres.version=9.6
The following versions of embedded Postgres are supported:
-
9.6
-
10.6
(default) -
11.x
(Unix Domain Socket Test are ignored)
The embedded Postgres database binds to an arbitrary port by default to avoid conflicts. Nevertheless, you can force the usage of the standard PostgreSQL port (5432) with a flag:
mvn test -DcontainerFixedPort
You can run tests with an external database:
-
the script
docker/postgres/resources/create-postgres.sql
creates the test data -
the
TLSTest
expects the database to be configured with SSL withdocker/postgres/resources/server.key
/docker/postgres/resources/server.cert`
You need to add some properties for testing:
> mvn test -Dconnection.uri=postgres://$username:$password@$host:$port/$database -Dtls.connection.uri=postgres://$username:$password@$host:$port/$database -Dunix.socket.directory=$path
-
connection.uri(mandatory): configure the client to connect the specified database
-
tls.connection.uri(mandatory): configure the client to run
TLSTest
with the specified Postgres with SSL enabled -
unix.socket.directory(optional): the single unix socket directory(multiple socket directories are not supported) to test Unix domain socket with a specified database, domain socket tests will be skipped if this property is not specified (Note: Make sure you can access the unix domain socket with this directory under your host machine)
-
unix.socket.port(optional): unix socket file is named
.s.PGSQL.nnnn
andnnnn
is the server’s port number, this property is mostly used when you test with Docker, when you publish your Postgres container port other than 5432 in your host but Postgres may actually listen on a different port in the container, you will then need this property to help you connect the Postgres with Unix domain socket
Run the Postgres containers with docker-compose
:
> cd docker/postgres
> docker-compose up --build -V
Run tests:
> mvn test -Dconnection.uri=postgres://$username:$password@$host:$port/$database -Dtls.connection.uri=postgres://$username:$password@$host:$port/$database -Dunix.socket.directory=$path -Dunix.socket.port=$port