postgresql的JDBC源信息

JDBC包maven源:

        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>42.2.11</version>
        </dependency>

JDBC信息:

# jdbc连接信息
driver=org.postgresql.Driver
url=jdbc:postgresql://10.168.x.x:5432/postgres_db
username=postgre
password=postgre

猜你喜欢

转载自www.cnblogs.com/gongxr/p/12524086.html