Spring Boot学习总结(28)—— springboot连接postgresql 指定模式Schema
Posted 科技D人生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot学习总结(28)—— springboot连接postgresql 指定模式Schema相关的知识,希望对你有一定的参考价值。
springboot 连接 postgresql 指定模式Schema
一般的连接方式,我们创建数据库之后,在public 的Schema(模式)下建表,这时使用连接方式
jdbc:postgresql://localhost:5432/postgresql
1、在这种连接方式下,默认连接使用的是postgresql数据库的public 模式
2、在业务场景中有时允许多个用户使用一个数据库并且不会互相干扰。这时需要在使用同一个数据库新建其他模式进行连接。这时在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
以上是关于Spring Boot学习总结(28)—— springboot连接postgresql 指定模式Schema的主要内容,如果未能解决你的问题,请参考以下文章