前提:Springboot2+mybatisplus+多数据源mysql,现在需要把数据源2更换为pgsql
一、pom文件修改
增加pgsql驱动
<postgresql.version>42.7.1</postgresql.version>
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql --><dependency><groupId>org.postgresql</groupId><artifactId>postgresql</artifactId><version>${postgresql.version}</version></dependency>
二、配置文件修改
这里需要注意,pgsql除了数据库外还有一个模式的概念。默认的是public,这里我用了自建的模式。
url: jdbc:postgresql://pgm-xxxx.pg