完成基本下单的学习

This commit is contained in:
2026-03-03 18:02:03 +08:00
parent 887fea1961
commit 8b37cccb93
24 changed files with 643 additions and 57 deletions

12
pom.xml
View File

@@ -32,6 +32,8 @@
<mysql.version>8.0.33</mysql.version>
</properties>
<!-- 依赖管理(子模块继承版本,仅管理不引入) -->
<dependencyManagement>
<dependencies>
@@ -88,6 +90,16 @@
<artifactId>rocketmq-client-java</artifactId>
<version>5.3.2</version>
</dependency>
<dependency>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-spring-boot-starter</artifactId>
<version>2.3.2</version> <!-- 适配 RocketMQ 5.x建议2.2.x+ -->
</dependency>
<dependency>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-client</artifactId>
<version>5.3.2</version> <!-- 这个存在于 Central -->
</dependency>
</dependencies>
</dependencyManagement>