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

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

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

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

最佳答案

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

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

也可以看看:
  • Documentation
  • 07-24 14:33