如何为 R2DBC PostgreSQL 配置模式

Posted

技术标签:

【中文标题】如何为 R2DBC PostgreSQL 配置模式【英文标题】:How to configure schema for R2DBC PostgreSQL 【发布时间】:2019-11-08 08:00:27 【问题描述】:

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

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

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

架构有什么东西吗? 有可用的设置列表吗?

【问题讨论】:

【参考方案1】:

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

spring:
  r2dbc:
    properties:
      schema: <yourSchema>

属性格式:

spring.r2dbc.properties.schema: <yourSchema>

【讨论】:

【参考方案2】:

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

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

另见:

Documentation

【讨论】:

以上是关于如何为 R2DBC PostgreSQL 配置模式的主要内容,如果未能解决你的问题,请参考以下文章

如何为 Postgresql 审计触发器设置用户名?

如何为 postgresql 数组数据类型创建 laravel 迁移

如何为复杂的 sql 查询获取中间数据。 PostgreSQL

PostgreSQL 中具有特定模式的 Linq 和实体迁移

如何为 PostgreSQL 设置千位分隔符?

如何为 postgresql MATERIALIZED VIEW 创建 typeorm 实体