feat(data-align): 初始化数据对齐模块
- 添加 han-note-data-align 模块基础结构 - 配置 application.yml 和 bootstrap.yml 文件 - 设置 MyBatis Plus 和 Redis 配置 - 集成 Nacos 服务发现与配置中心 - 添加日志配置文件 logback-spring.xml - 创建数据源和 MyBatis 相关 IDEA 配置文件- 更新 .gitignore 排除特定开发环境配置和日志文件 - 配置 IntelliJ IDEA 编译器和编码设置
This commit is contained in:
8
pom.xml
8
pom.xml
@@ -22,6 +22,7 @@
|
||||
<module>han-note-note/han-note-note-biz</module>
|
||||
<module>han-note-user-relation</module>
|
||||
<module>han-note-count</module>
|
||||
<module>han-note-data-align</module>
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
@@ -65,6 +66,7 @@
|
||||
<rocketmq-spring-boot.version>2.3.4</rocketmq-spring-boot.version>
|
||||
<rocketmq-client.version>5.3.2</rocketmq-client.version>
|
||||
<buffertrigger.version>0.2.21</buffertrigger.version>
|
||||
<xxl-job.version>3.2.0</xxl-job.version>
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
@@ -292,6 +294,12 @@
|
||||
<artifactId>buffer-trigger</artifactId>
|
||||
<version>${buffertrigger.version}</version>
|
||||
</dependency>
|
||||
<!-- XXL-JOB 分布式定时任务调度 -->
|
||||
<dependency>
|
||||
<groupId>com.xuxueli</groupId>
|
||||
<artifactId>xxl-job-core</artifactId>
|
||||
<version>${xxl-job.version}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
Reference in New Issue
Block a user