- 实现批量写入组件,支持 INSERT IGNORE 操作和降级逐行写入 - 添加表定义注册器,自动解析 SQL 元数据并注册 13 张补数表 - 集成异步任务执行器,支持后台补数任务提交和状态管理 - 创建数据补录控制器,提供预估、创建和查询任务状态接口 - 实现时间槽计算和数据生成逻辑,支持多相别数据补录 - 添加线程池配置和任务状态持有器,确保任务并发执行安全 - 创建预览功能,估算补数任务的规模和影响范围
42 lines
1.2 KiB
XML
42 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.njcn.gather</groupId>
|
|
<artifactId>tools</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>add-data</artifactId>
|
|
|
|
<properties>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>njcn-common</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>spingboot2.3.12</artifactId>
|
|
<version>2.3.12</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jdbc</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|