mirror of
https://gitee.com/youlaitech/youlai-mall.git
synced 2024-12-23 05:00:25 +08:00
refactor(mall-oms): 订单超时未支付定时关闭订单的死信队列调整根据配置动态创建、绑定交换机和队列
This commit is contained in:
parent
4a4ee3d9aa
commit
c7bb7d206f
@ -27,7 +27,6 @@ public class OrderSubmitForm {
|
||||
*/
|
||||
private Long totalAmount;
|
||||
|
||||
|
||||
/**
|
||||
* 支付金额(单位:分)
|
||||
*/
|
||||
@ -38,9 +37,9 @@ public class OrderSubmitForm {
|
||||
*/
|
||||
private List<OrderItemDTO> orderItems;
|
||||
|
||||
// 收货地址
|
||||
|
||||
|
||||
/**
|
||||
* 订单备注
|
||||
*/
|
||||
@Size(max = 500, message = "订单备注长度不能超过500")
|
||||
private String remark;
|
||||
|
||||
@ -49,7 +48,6 @@ public class OrderSubmitForm {
|
||||
*/
|
||||
private String couponId;
|
||||
|
||||
|
||||
/**
|
||||
* 收获地址
|
||||
*/
|
||||
|
@ -191,7 +191,7 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, OmsOrder> impleme
|
||||
result = orderItemService.saveBatch(saveOrderItems);
|
||||
if (result) {
|
||||
// 订单超时取消
|
||||
rabbitTemplate.convertAndSend("order.exchange", "order.create", orderToken);
|
||||
rabbitTemplate.convertAndSend("order.exchange", "order.create.routing.key", orderToken);
|
||||
}
|
||||
}
|
||||
Assert.isTrue(result, "订单提交失败");
|
||||
|
@ -15,6 +15,6 @@ public class RabbitMQTest {
|
||||
|
||||
@Test
|
||||
public void createOrderTest() {
|
||||
rabbitTemplate.convertAndSend("order.exchange", "order.create", "4acd475a-c6aa-4d9a-a3a5-40da7472cbee");
|
||||
rabbitTemplate.convertAndSend("order.exchange", "order.create.routing.key", "4acd475a-c6aa-4d9a-a3a5-40da7472cbee");
|
||||
}
|
||||
}
|
||||
|
@ -55,11 +55,6 @@ public class RabbitModuleInfo {
|
||||
*/
|
||||
private boolean autoDelete = false; // 默认false,不自动删除
|
||||
|
||||
/**
|
||||
* 是否延迟交换机
|
||||
*/
|
||||
private boolean delayed;
|
||||
|
||||
/**
|
||||
* 交换机其他参数
|
||||
*/
|
||||
@ -96,16 +91,12 @@ public class RabbitModuleInfo {
|
||||
/**
|
||||
* 绑定死信队列的交换机名称
|
||||
*/
|
||||
private String deadExchangeName;
|
||||
|
||||
private String deadLetterExchange;
|
||||
|
||||
/**
|
||||
* 绑定死信队列的路由key
|
||||
*/
|
||||
private String deadRoutingKey;
|
||||
|
||||
|
||||
private Long messageTtl;
|
||||
private String deadLetterRoutingKey;
|
||||
|
||||
|
||||
private Map<String, Object> arguments;
|
||||
|
@ -1,6 +1,7 @@
|
||||
package com.youlai.common.rabbitmq.dynamic;
|
||||
|
||||
import cn.hutool.core.collection.CollectionUtil;
|
||||
import cn.hutool.core.convert.Convert;
|
||||
import cn.hutool.core.lang.Assert;
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
@ -31,14 +32,14 @@ public class RabbitModuleInitializer implements SmartInitializingSingleton {
|
||||
|
||||
@Override
|
||||
public void afterSingletonsInstantiated() {
|
||||
log.info("初始化 RabbitMQ 队列、交换机和绑定关系");
|
||||
initRabbitModule();
|
||||
log.info("RabbitMQ 根据配置动态创建和绑定队列、交换机");
|
||||
declareRabbitModule();
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化 RabbitMQ 队列、交换机和绑定关系
|
||||
* RabbitMQ 根据配置动态创建和绑定队列、交换机
|
||||
*/
|
||||
private void initRabbitModule() {
|
||||
private void declareRabbitModule() {
|
||||
List<RabbitModuleInfo> rabbitModuleInfos = rabbitModuleProperties.getModules();
|
||||
if (CollectionUtil.isEmpty(rabbitModuleInfos)) {
|
||||
return;
|
||||
@ -47,9 +48,9 @@ public class RabbitModuleInitializer implements SmartInitializingSingleton {
|
||||
configParamValidate(rabbitModuleInfo);
|
||||
|
||||
// 队列
|
||||
Queue queue = convertToQueue(rabbitModuleInfo.getQueue());
|
||||
Queue queue = convertQueue(rabbitModuleInfo.getQueue());
|
||||
// 交换机
|
||||
Exchange exchange = convertToExchange(rabbitModuleInfo.getExchange());
|
||||
Exchange exchange = convertExchange(rabbitModuleInfo.getExchange());
|
||||
// 绑定关系
|
||||
String routingKey = rabbitModuleInfo.getRoutingKey();
|
||||
String queueName = rabbitModuleInfo.getQueue().getName();
|
||||
@ -88,19 +89,25 @@ public class RabbitModuleInitializer implements SmartInitializingSingleton {
|
||||
* @param queue
|
||||
* @return
|
||||
*/
|
||||
public Queue convertToQueue(RabbitModuleInfo.Queue queue) {
|
||||
public Queue convertQueue(RabbitModuleInfo.Queue queue) {
|
||||
Map<String, Object> arguments = queue.getArguments();
|
||||
|
||||
// 是否需要绑定死信队列
|
||||
String deadExchangeName = queue.getDeadExchangeName();
|
||||
String deadRoutingKey = queue.getDeadRoutingKey();
|
||||
if (StrUtil.isNotBlank(deadExchangeName) && StrUtil.isNotBlank(deadRoutingKey)) {
|
||||
|
||||
if (arguments != null) {
|
||||
arguments = new HashMap<>(4);
|
||||
arguments.put("x-dead-letter-exchange", deadExchangeName);
|
||||
arguments.put("x-dead-letter-routing-key", deadRoutingKey);
|
||||
// 转换ttl的类型为long
|
||||
if (arguments != null && arguments.containsKey("x-message-ttl")) {
|
||||
arguments.put("x-message-ttl", Convert.toLong(arguments.get("x-message-ttl")));
|
||||
}
|
||||
|
||||
// 是否需要绑定死信队列
|
||||
String deadLetterExchange = queue.getDeadLetterExchange();
|
||||
String deadLetterRoutingKey = queue.getDeadLetterRoutingKey();
|
||||
if (StrUtil.isNotBlank(deadLetterExchange) && StrUtil.isNotBlank(deadLetterRoutingKey)) {
|
||||
|
||||
if (arguments == null) {
|
||||
arguments = new HashMap<>(4);
|
||||
}
|
||||
arguments.put("x-dead-letter-exchange", deadLetterExchange);
|
||||
arguments.put("x-dead-letter-routing-key", deadLetterRoutingKey);
|
||||
|
||||
}
|
||||
|
||||
return new Queue(queue.getName(), queue.isDurable(), queue.isExclusive(), queue.isAutoDelete(), arguments);
|
||||
@ -113,7 +120,7 @@ public class RabbitModuleInitializer implements SmartInitializingSingleton {
|
||||
* @param exchangeInfo
|
||||
* @return
|
||||
*/
|
||||
public Exchange convertToExchange(RabbitModuleInfo.Exchange exchangeInfo) {
|
||||
public Exchange convertExchange(RabbitModuleInfo.Exchange exchangeInfo) {
|
||||
|
||||
AbstractExchange exchange = null;
|
||||
|
||||
@ -140,7 +147,6 @@ public class RabbitModuleInitializer implements SmartInitializingSingleton {
|
||||
break;
|
||||
}
|
||||
|
||||
exchange.setDelayed(exchangeInfo.isDelayed());
|
||||
return exchange;
|
||||
|
||||
}
|
||||
|
@ -1,10 +1,7 @@
|
||||
package com.youlai.common.rabbitmq.queue;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.amqp.core.Binding;
|
||||
import org.springframework.amqp.core.Exchange;
|
||||
import org.springframework.amqp.core.Queue;
|
||||
import org.springframework.amqp.core.TopicExchange;
|
||||
import org.springframework.amqp.core.*;
|
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.stereotype.Component;
|
||||
@ -18,8 +15,8 @@ import java.util.Map;
|
||||
* @author <a href="mailto:xianrui0365@163.com">haoxr</a>
|
||||
* @date 2022/2/4 23:21
|
||||
*/
|
||||
@Component
|
||||
@ConditionalOnProperty(prefix = "spring.application.name", value = "mall-oms")
|
||||
|
||||
@Deprecated
|
||||
@Slf4j
|
||||
public class OrderCloseQueue {
|
||||
|
||||
@ -28,7 +25,7 @@ public class OrderCloseQueue {
|
||||
*/
|
||||
@Bean
|
||||
public Exchange orderExchange() {
|
||||
return new TopicExchange("order.exchange", true, false);
|
||||
return new DirectExchange("order.exchange", true, false);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -40,7 +37,7 @@ public class OrderCloseQueue {
|
||||
// 延时队列的消息过期了,会自动触发消息的转发,根据routingKey发送到指定的exchange中,exchange路由到死信队列
|
||||
Map<String, Object> args = new HashMap<>();
|
||||
args.put("x-dead-letter-exchange", "order.exchange");
|
||||
args.put("x-dead-letter-routing-key", "order.close"); // 死信路由Key
|
||||
args.put("x-dead-letter-routing-key", "order.close.routing.key"); // 死信路由Key
|
||||
args.put("x-message-ttl", 60 * 1000L); // 单位:毫秒,1分钟测试使用
|
||||
return new Queue("order.delay.queue", true, false, false, args);
|
||||
}
|
||||
@ -51,7 +48,7 @@ public class OrderCloseQueue {
|
||||
*/
|
||||
@Bean
|
||||
public Binding orderDelayQueueBinding() {
|
||||
return new Binding("order.delay.queue", Binding.DestinationType.QUEUE,"order.exchange","order.create",null);
|
||||
return new Binding("order.delay.queue", Binding.DestinationType.QUEUE, "order.exchange", "order.create.routing.key", null);
|
||||
}
|
||||
|
||||
|
||||
@ -69,7 +66,7 @@ public class OrderCloseQueue {
|
||||
*/
|
||||
@Bean
|
||||
public Binding orderCloseQueueBinding() {
|
||||
return new Binding("order.close.queue", Binding.DestinationType.QUEUE,"order.exchange","order.close",null);
|
||||
return new Binding("order.close.queue", Binding.DestinationType.QUEUE, "order.exchange", "order.close.routing.key", null);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
|
||||
com.youlai.common.rabbitmq.config.RabbitConfig,\
|
||||
com.youlai.common.rabbitmq.queue.OrderCloseQueue,\
|
||||
com.youlai.common.rabbitmq.dynamic.RabbitModuleProperties
|
||||
|
Loading…
Reference in New Issue
Block a user