From 38691add522c4431fcafdde36eceae2f74fe5397 Mon Sep 17 00:00:00 2001 From: Toshiaki Maki Date: Mon, 22 Aug 2022 22:29:58 +0900 Subject: [PATCH] Fix postgresql url in README (#81) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4f66705..7121cb6 100644 --- a/README.md +++ b/README.md @@ -208,9 +208,9 @@ Disable Property: `org.springframework.cloud.bindings.boot.postgresql.enable` | ------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `spring.datasource.driver-class-name` | `org.postgresql.Driver` | | `spring.datasource.password` | `{password}` | -| `spring.datasource.url` | `{jdbc-url}` or if not set then `jdbc:postgres://{host}:{port}/{database}`. If a binding for `{sslmode}`, `{sslrootcert}`, or `{options}` are set, the value is appended as properties to the generated URL (you must have host, port and database set or no mapping will occur) | +| `spring.datasource.url` | `{jdbc-url}` or if not set then `jdbc:postgresql://{host}:{port}/{database}`. If a binding for `{sslmode}`, `{sslrootcert}`, or `{options}` are set, the value is appended as properties to the generated URL (you must have host, port and database set or no mapping will occur) | | `spring.datasource.username` | `{username}` | -| `spring.r2dbc.url` | `{r2dbc-url}` or if not set then `r2dbc:postgres://{host}:{port}/{database}`. If a binding for `{sslmode}`, `{sslrootcert}`, or `{options}` are set, the value is appended as properties to the generated URL (you must have host, port and database set or no mapping will occur) | +| `spring.r2dbc.url` | `{r2dbc-url}` or if not set then `r2dbc:postgresql://{host}:{port}/{database}`. If a binding for `{sslmode}`, `{sslrootcert}`, or `{options}` are set, the value is appended as properties to the generated URL (you must have host, port and database set or no mapping will occur) | | `spring.r2dbc.password` | `{password}` | | `spring.r2dbc.username` | `{username}` |