From cf71d0851535e20d562b675b1c68e0b634c19b5a Mon Sep 17 00:00:00 2001 From: Emily Casey Date: Mon, 1 Jun 2020 18:19:10 -0400 Subject: [PATCH] Documents r2dbc properties in README Signed-off-by: Emily Casey --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 00d1298..3acd610 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,9 @@ Disable Property: `org.springframework.cloud.bindings.boot.db2.enable` | `spring.datasource.password` | `{secret/password}` | `spring.datasource.url` | `jdbc:db2://{secret/host}:{secret/port}/{secret/database}` | `spring.datasource.username` | `{secret/username}` +| `spring.r2dbc.url` | `r2dbc:db2://{secret/host}:{secret/port}/{secret/database}` +| `spring.r2dbc.password` | `{secret/password}` +| `spring.r2dbc.username` | `{secret/username}` ### Elasticsearch @@ -127,6 +130,9 @@ Disable Property: `org.springframework.cloud.bindings.boot.mysql.enable` | `spring.datasource.password` | `{secret/password}` | `spring.datasource.url` | `jdbc:mysql://{secret/host}:{secret/port}/{secret/database}` | `spring.datasource.username` | `{secret/username}` +| `spring.r2dbc.url` | `r2dbc:mysql://{secret/host}:{secret/port}/{secret/database}` +| `spring.r2dbc.password` | `{secret/password}` +| `spring.r2dbc.username` | `{secret/username}` ### Neo4J Kind: `Neo4J` @@ -148,6 +154,9 @@ Disable Property: `org.springframework.cloud.bindings.boot.oracle.enable` | `spring.datasource.password` | `{secret/password}` | `spring.datasource.url` | `jdbc:oracle://{secret/host}:{secret/port}/{secret/database}` | `spring.datasource.username` | `{secret/username}` +| `spring.r2dbc.url` | `r2dbc:oracle://{secret/host}:{secret/port}/{secret/database}` +| `spring.r2dbc.password` | `{secret/password}` +| `spring.r2dbc.username` | `{secret/username}` ### PostgreSQL RDBMS Kind: `PostgreSQL` @@ -159,6 +168,9 @@ Disable Property: `org.springframework.cloud.bindings.boot.postgresql.enable` | `spring.datasource.password` | `{secret/password}` | `spring.datasource.url` | `jdbc:postgres://{secret/host}:{secret/port}/{secret/database}` | `spring.datasource.username` | `{secret/username}` +| `spring.r2dbc.url` | `r2dbc:postgres://{secret/host}:{secret/port}/{secret/database}` +| `spring.r2dbc.password` | `{secret/password}` +| `spring.r2dbc.username` | `{secret/username}` ### RabbitMQ RDBMS Kind: `RabbitMQ` @@ -201,6 +213,9 @@ Disable Property: `org.springframework.cloud.bindings.boot.sqlserver.enable` | `spring.datasource.password` | `{secret/password}` | `spring.datasource.url` | `jdbc:sqlserver://{secret/host}:{secret/port}/{secret/database}` | `spring.datasource.username` | `{secret/username}` +| `spring.r2dbc.url` | `r2dbc:sqlserver://{secret/host}:{secret/port}/{secret/database}` +| `spring.r2dbc.password` | `{secret/password}` +| `spring.r2dbc.username` | `{secret/username}` ### Wavefront