RabbitMQ - Spring Boot
文章目录 Introduction RabbitMQ Work Mode Direct -- 路由模式 RabbitMQ direct producer application.properties pom.xml DirectRabbitConfig.java SendMessageController.java Console Output RabbitMQ direct consumer application.properties pom.xml DirectReceiver.java Console Output Fanout -- 发布/订阅模式 Fanout Producer FanoutRabbitConfig.java SendMessageController.java application.properties pom.xml Console Output Fanout Consumer FanoutReceiverA.java FanoutReceiverB.java FanoutReceiverC.java application.properties pom.xml Console Output Topic -- 匹配订阅模式 Publisher application.properties pom.xml TopicRabbitConfig