创建简单的 JdbcUtil,并借助 MyBatis 的 SQL 构建器简化 SQL 的拼接。

This commit is contained in:
2023-05-09 01:05:12 +08:00
parent 85ababc482
commit fa3f4695f1
8 changed files with 1081 additions and 0 deletions

13
pom.xml
View File

@@ -49,6 +49,19 @@
<version>5.9.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>4.0.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.3.8</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>