parent
1d9d73a254
commit
7398b2026a
@ -0,0 +1,52 @@
|
|||||||
|
package com.mashibing.config;
|
||||||
|
|
||||||
|
import org.springframework.amqp.core.*;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author zjw
|
||||||
|
* @description
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
public class RabbitMQConfig {
|
||||||
|
|
||||||
|
// 下单服务的交换机
|
||||||
|
public static final String PLACE_ORDER_EXCHANGE = "place_order_exchange";
|
||||||
|
// 三个服务的Queue
|
||||||
|
public static final String COUPON_QUEUE = "coupon_queue";
|
||||||
|
public static final String USER_POINTS_QUEUE = "user_points_queue";
|
||||||
|
public static final String BUSINESS_QUEUE = "business_queue";
|
||||||
|
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public Exchange placeOrderExchange(){
|
||||||
|
return ExchangeBuilder.fanoutExchange(PLACE_ORDER_EXCHANGE).build();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public Queue couponQueue(){
|
||||||
|
return QueueBuilder.durable(COUPON_QUEUE).build();
|
||||||
|
}
|
||||||
|
@Bean
|
||||||
|
public Queue userPointsQueue(){
|
||||||
|
return QueueBuilder.durable(USER_POINTS_QUEUE).build();
|
||||||
|
}
|
||||||
|
@Bean
|
||||||
|
public Queue businessQueue(){
|
||||||
|
return QueueBuilder.durable(BUSINESS_QUEUE).build();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public Binding couponBinding(Exchange placeOrderExchange,Queue couponQueue){
|
||||||
|
return BindingBuilder.bind(couponQueue).to(placeOrderExchange).with("").noargs();
|
||||||
|
}
|
||||||
|
@Bean
|
||||||
|
public Binding userPointsBinding(Exchange placeOrderExchange,Queue userPointsQueue){
|
||||||
|
return BindingBuilder.bind(userPointsQueue).to(placeOrderExchange).with("").noargs();
|
||||||
|
}
|
||||||
|
@Bean
|
||||||
|
public Binding businessBinding(Exchange placeOrderExchange,Queue businessQueue){
|
||||||
|
return BindingBuilder.bind(businessQueue).to(placeOrderExchange).with("").noargs();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.mashibing.listener;
|
||||||
|
|
||||||
|
import com.mashibing.config.RabbitMQConfig;
|
||||||
|
import com.rabbitmq.client.Channel;
|
||||||
|
import org.springframework.amqp.core.Message;
|
||||||
|
import org.springframework.amqp.rabbit.annotation.RabbitListener;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author zjw
|
||||||
|
* @description
|
||||||
|
*/
|
||||||
|
@Component
|
||||||
|
public class CouponListener {
|
||||||
|
|
||||||
|
@RabbitListener(queues = {RabbitMQConfig.COUPON_QUEUE})
|
||||||
|
public void consume(String msg, Channel channel, Message message) throws InterruptedException, IOException {
|
||||||
|
// 预扣除优惠券
|
||||||
|
Thread.sleep(400);
|
||||||
|
System.out.println("优惠券预扣除成功!" + msg);
|
||||||
|
// 手动ACK
|
||||||
|
channel.basicAck(message.getMessageProperties().getDeliveryTag(),false);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue