springboot连接postgresql 指定模式Schema

springboot 连接 postgresql 指定模式Schema

一般的连接方式,我们创建数据库之后,在public 的Schema(模式)下建表,这时使用连接方式

jdbc:postgresql://localhost:5432/postgresql
在这种连接方式下,默认连接使用的是postgresql数据库的public 模式

在业务场景中有时允许多个用户使用一个数据库并且不会互相干扰。这时需要在使用同一个数据库 新建其他模式进行连接。这时在springboot的数据源jdbc配置时注意。

postgresql-> 9.3 及以前的版本指定方式
spring.datasource.url=jdbc:postgresql://localhost:5432/postgresql?searchpath=newschema
postgresql-> 9.4 及以后的版本指定方式
spring.datasource.url=jdbc:postgresql://localhost:5432/postgresql?currentSchema=newschema

你可能感兴趣的:(springboot,后端,postgresql)