SpringBoot整合rabbitMQ

本文展示了如何使用SpringBoot构建一个基于RabbitMQ的发布订阅模式应用,包括一个生产者、两个消费者(支付系统和库存系统)。当下单成功时,生产者将订单信息发送到交换机,交换机再将消息路由到相应的队列,被消费者监听并处理。支付系统接收到消息后处理支付,库存系统则处理商品出库。
摘要由CSDN通过智能技术生成

一个小练习
在这里插入图片描述
创建一个springboot工程
在这里插入图片描述
该练习可以分为一个生产者,两个消费者,一个交换机

可以运用发布订阅模式来实现

创建一个消费者:

package com.wyj;

import com.alibaba.fastjson.JSON;
import org.springframework.amqp.rabbit.connection.CorrelationData;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.HashMap;

/**
 * @author 王逸君
 * @version 1.0
 * @date 2021/4/20 19:01
 */
@RestController
public class Test {
    @Autowired
    private RabbitTemplate rabbitTemplate;

    @GetMapping("/hello")
    public String hello(){
        System.out.println("下单成功");
        HashMap<Object, Object> map = new HashMap<>();
        map.put("id",1);
        map.put("num",300);
        map.put("price",6000);
        /**
         * String routingKey
         * Object message
         */
        rabbitTemplate.convertAndSend("qy129_exchange_fanout","",JSON.toJSONString(map));
        return "下单成功";
    }
}

两个消费者,其中支付系统为:

package com.wyj.pay;

import com.alibaba.fastjson.JSON;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;

import java.util.Map;

/**
 * @author 王逸君
 * @version 1.0
 * @date 2021/4/20 19:37
 */
@Component
public class Test {
    @RabbitListener(queues = {"qy129_exchange01"})
    public void pay(String msg){
        Map map = JSON.parseObject(msg, Map.class);
        System.out.println("应收款为:"+map.get("price"));
        System.out.println("支付系统,已支付");
    }
}

库存系统为:

package com.wyj.inventory;

import com.alibaba.fastjson.JSON;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;

import java.util.Map;

/**
 * @author 王逸君
 * @version 1.0
 * @date 2021/4/20 19:06
 */
@Component
public class Test {

    @RabbitListener(queues = {"qy129_exchange02"})
    public void inventory(String msg){
        Map map = JSON.parseObject(msg, Map.class);

        System.out.println("商品编号为:"+map.get("id")+",出库数量为:"+map.get("num"));
        System.out.println("库存系统,出货成功");
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值