如何为R2DBC PostgreSQL配置架构

时间:2019-06-26 11:24:03

标签: java spring postgresql spring-data r2dbc

我尝试将Spring Data R2DBC与postgres一起使用。

我知道url,用户名和密码的一些配置。

spring.r2dbc.url
spring.r2dbc.username
spring.r2dbc.password

该模式有东西吗? 有可用的设置列表吗?

2 个答案:

答案 0 :(得分:0)

模式是Postgres特定的,可以通过R2DBC连接URL进行配置:

r2dbc:postgresql://<server>:<port>/<database>?schema=<yourSchema>

另请参阅:

答案 1 :(得分:0)

在属性中传递模式的更漂亮方法: 格式为 yaml

spring:
  r2dbc:
    properties:
      schema: <yourSchema>

属性格式:

spring.r2dbc.properties.schema: <yourSchema>