|  | 
| 5 | 5 | 
 | 
| 6 | 6 | <groupId>apijson.demo</groupId> | 
| 7 | 7 | <artifactId>apijson-demo</artifactId> | 
| 8 |  | -<version>4.0.0</version> | 
|  | 8 | +<version>4.5.1</version> | 
| 9 | 9 | <packaging>jar</packaging> | 
| 10 | 10 | 
 | 
| 11 | 11 | <name>APIJSONDemo</name> | 
| 12 |  | -<description>Demo project for Testing APIJSON Server based on | 
| 13 |  | -SpringBoot | 
| 14 |  | -</description> | 
|  | 12 | +<description>Demo project for Testing APIJSON Server based on SpringBoot</description> | 
| 15 | 13 | 
 | 
| 16 | 14 | <properties> | 
| 17 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
|  | 
| 21 | 19 | </properties> | 
| 22 | 20 | 
 | 
| 23 | 21 | <dependencies> | 
|  | 22 | +<!-- APIJSONBoot 需要用的数据库 JDBC 驱动 --> | 
| 24 | 23 | <dependency> | 
| 25 |  | -<groupId>com.qcloud</groupId> | 
| 26 |  | -<artifactId>qcloud-java-sdk</artifactId> | 
| 27 |  | -<version>2.0.1</version> | 
|  | 24 | +<groupId>mysql</groupId> | 
|  | 25 | +<artifactId>mysql-connector-java</artifactId> | 
|  | 26 | +<version>8.0.22</version> | 
| 28 | 27 | </dependency> | 
| 29 | 28 | <dependency> | 
| 30 |  | -<groupId>com.tencentcloudapi</groupId> | 
| 31 |  | -<artifactId>scf-java-events</artifactId> | 
| 32 |  | -<version>0.0.2</version> | 
|  | 29 | +<groupId>org.postgresql</groupId> | 
|  | 30 | +<artifactId>postgresql</artifactId> | 
|  | 31 | +<version>42.2.18</version> | 
| 33 | 32 | </dependency> | 
| 34 |  | -<!-- APIJSONORM 需要用的 JSON 封装/解析库,1.2.24 以上 --> | 
| 35 |  | - | 
| 36 |  | -<!-- APIJSONBoot 需要用的 Spring 框架,1.4.1 以上 --> | 
| 37 |  | -<dependency> | 
| 38 |  | -<groupId>org.springframework.boot</groupId> | 
| 39 |  | -<artifactId>spring-boot-starter-web</artifactId> | 
| 40 |  | -<version>2.4.2</version> | 
| 41 |  | -</dependency> | 
| 42 |  | -<!-- 没找到合适且稳定的 Oracle 的 JDBC Maven 依赖,已在 libs 目录放了对应的 jar 包来替代 --> | 
|  | 33 | +<!-- Oracle, SQLServer 等其它数据库的 JDBC 驱动,可以在这里加上 Maven 依赖或 libs 目录放 Jar 包并依赖 --> | 
| 43 | 34 | 
 | 
| 44 | 35 | <dependency> | 
| 45 | 36 | <groupId>com.github.APIJSON</groupId> | 
| 46 | 37 | <artifactId>apijson-framework</artifactId> | 
| 47 | 38 | <version>LATEST</version> | 
| 48 | 39 | </dependency> | 
| 49 | 40 | 
 | 
|  | 41 | +<!-- APIJSONBoot 需要用的 SpringBoot 框架,1.4.1 以上 --> | 
|  | 42 | +<dependency> | 
|  | 43 | +<groupId>org.springframework.boot</groupId> | 
|  | 44 | +<artifactId>spring-boot-starter-web</artifactId> | 
|  | 45 | +<version>2.4.2</version> | 
|  | 46 | +</dependency> | 
|  | 47 | + | 
| 50 | 48 | </dependencies> | 
| 51 | 49 | 
 | 
| 52 | 50 | <build> | 
|  | 
0 commit comments