赞
踩
前提:Springboot2+mybatisplus+多数据源mysql,现在需要把数据源2更换为pgsql
增加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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。