Skip to content

Commit e8a0d40

Browse files
committed
Java:APIJSONDemo 和 APIJSONBoot 都分别升级 MySQL, PostgreSQL 数据库 JDBC 驱动至最新稳定版 8.0.22, 42.2.18;
1 parent a8012e2 commit e8a0d40

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

APIJSON-Java-Server/APIJSONBoot/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,23 +66,23 @@
6666
</dependency>
6767
<!-- 可使用 libs 目录的 apijson-orm.jar 和 apijson-framework.jar 来替代,两种方式二选一 >>>>>>>>>> -->
6868

69-
<!-- 数据库 JDBC 驱动 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -->
69+
<!-- APIJSONBoot 需要用的数据库 JDBC 驱动 -->
7070
<dependency>
7171
<groupId>mysql</groupId>
7272
<artifactId>mysql-connector-java</artifactId>
73-
<version>8.0.16</version>
73+
<version>8.0.22</version>
7474
</dependency>
7575
<dependency>
7676
<groupId>org.postgresql</groupId>
7777
<artifactId>postgresql</artifactId>
78-
<version>42.2.5</version>
78+
<version>42.2.18</version>
7979
</dependency>
8080
<dependency>
8181
<groupId>net.sourceforge.jtds</groupId>
8282
<artifactId>jtds</artifactId>
8383
<version>1.3.1</version>
8484
</dependency>
85-
<!-- 没找到合适且稳定的 OracleJDBC Maven 依赖,需要自行下载 jar 包 -->
85+
<!-- Oracle, SQLServer 等其它数据库的 JDBC 驱动,可以在这里加上 Maven 依赖或 libs 目录放 Jar 包并依赖 -->
8686
<!-- 数据库 JDBC 驱动 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -->
8787

8888

APIJSON-Java-Server/APIJSONFinal/pom.xml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,18 @@
3333
</dependency>
3434
<!-- 可使用 libs 目录的 apijson-orm.jar 和 apijson-framework.jar 来替代,两种方式二选一 >>>>>>>>>> -->
3535

36-
<!-- 数据库 JDBC 驱动 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -->
36+
<!-- APIJSONBoot 需要用的数据库 JDBC 驱动 -->
3737
<dependency>
3838
<groupId>mysql</groupId>
3939
<artifactId>mysql-connector-java</artifactId>
40-
<version>8.0.16</version>
40+
<version>8.0.22</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>org.postgresql</groupId>
4444
<artifactId>postgresql</artifactId>
45-
<version>42.2.5</version>
45+
<version>42.2.18</version>
4646
</dependency>
47-
<dependency>
48-
<groupId>net.sourceforge.jtds</groupId>
49-
<artifactId>jtds</artifactId>
50-
<version>1.3.1</version>
51-
</dependency>
52-
<!-- 没找到合适且稳定的 Oracle 的 JDBC Maven 依赖,需要自行下载 jar 包 -->
53-
<!-- 数据库 JDBC 驱动 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -->
47+
<!-- Oracle, SQLServer 等其它数据库的 JDBC 驱动,可以在这里加上 Maven 依赖或 libs 目录放 Jar 包并依赖 -->
5448

5549
<!-- APIJSONBoot 需要用的 JFinal 框架,3.5 以上 -->
5650
<dependency>

0 commit comments

Comments
 (0)