PostgreSQL Driver
依赖说明:一个 JDBC 和 R2DBC 驱动程序,它允许 Java 程序使用标准的、于数据库的 Java 代码连接到 PostgreSLQ 数据库
PostgreSQL是由 PostgreSQL 社区全球志愿者开发团队开发/维护的 对象-关系型数据库管理系统(Object-Relational DataBase Management System).
参考:
(更多参考自行搜索,资源比较多)
POM
<!--PostgresQL Driver-->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
XXXX