All Projects → mechero → Spring Boot Amqp Messaging

mechero / Spring Boot Amqp Messaging

This is a simple spring-boot app that shows how to configure easily RabbitMQ with AMQP for producing and consuming messages in default format and JSON.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Spring Boot Amqp Messaging

Springboot Labs
一个涵盖六个专栏:Spring Boot 2.X、Spring Cloud、Spring Cloud Alibaba、Dubbo、分布式消息队列、分布式事务的仓库。希望胖友小手一抖,右上角来个 Star,感恩 1024
Stars: ✭ 12,804 (+8916.9%)
Mutual labels:  spring-boot, rabbitmq
Kkbinlog
支持mysql、MongoDB数据变更订阅分发
Stars: ✭ 112 (-21.13%)
Mutual labels:  spring-boot, rabbitmq
Mall
mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。
Stars: ✭ 54,797 (+38489.44%)
Mutual labels:  spring-boot, rabbitmq
Seckill
Spring Boot+MySQL+Redis+RabbitMQ的高性能高并发商品秒杀系统设计与优化
Stars: ✭ 103 (-27.46%)
Mutual labels:  spring-boot, rabbitmq
Bitnami Docker Rabbitmq
Bitnami Docker Image for RabbitMQ
Stars: ✭ 120 (-15.49%)
Mutual labels:  rabbitmq, amqp
Springboot Quartz
quartz + springboot + RabbitMQ + H2(in-memory database) + dynamic task management web console.
Stars: ✭ 103 (-27.46%)
Mutual labels:  spring-boot, rabbitmq
Aiormq
Pure python AMQP 0.9.1 asynchronous client library
Stars: ✭ 112 (-21.13%)
Mutual labels:  rabbitmq, amqp
Fxshop
基于SpringBoot+SpringCloud微服务的商城项目(demo版 不可用于生产)
Stars: ✭ 82 (-42.25%)
Mutual labels:  spring-boot, rabbitmq
Amqproxy
An intelligent AMQP proxy, with connection and channel pooling/reusing
Stars: ✭ 115 (-19.01%)
Mutual labels:  rabbitmq, amqp
Java Interview
At the beginning, it was the repository with questions from Java interviews. Currently, it's more like knowledge base with useful links.
Stars: ✭ 114 (-19.72%)
Mutual labels:  spring-boot, rabbitmq
Springboot Templates
springboot和dubbo、netty的集成,redis mongodb的nosql模板, kafka rocketmq rabbit的MQ模板, solr solrcloud elasticsearch查询引擎
Stars: ✭ 100 (-29.58%)
Mutual labels:  spring-boot, rabbitmq
Rabbitmq Dump Queue
Dump messages from a RabbitMQ queue to files, without affecting the queue.
Stars: ✭ 139 (-2.11%)
Mutual labels:  rabbitmq, amqp
Amiquip
Pure Rust RabbitMQ client
Stars: ✭ 88 (-38.03%)
Mutual labels:  rabbitmq, amqp
Superman
Superman是什么:构建Java 高级开发技术的知识体系,从基础不断打怪升级成为超人之路(更新中.......)
Stars: ✭ 106 (-25.35%)
Mutual labels:  spring-boot, rabbitmq
Rabbus
A tiny wrapper over amqp exchanges and queues 🚌 ✨
Stars: ✭ 86 (-39.44%)
Mutual labels:  rabbitmq, amqp
Spring Boot Examples
🥗​ Spring/SpringBoot/SpringCloud 实践学习案例,从入门到精通,持续更新中,欢迎交流学习🍺 !
Stars: ✭ 110 (-22.54%)
Mutual labels:  spring-boot, rabbitmq
Rabbitroutine
Lightweight library that handles RabbitMQ auto-reconnect and publishing retry routine for you.
Stars: ✭ 77 (-45.77%)
Mutual labels:  rabbitmq, amqp
Bunny
Bunny is a popular, easy to use, mature Ruby client for RabbitMQ
Stars: ✭ 1,224 (+761.97%)
Mutual labels:  rabbitmq, amqp
Rabbitmq Mock
Mock for RabbitMQ Java amqp-client
Stars: ✭ 114 (-19.72%)
Mutual labels:  rabbitmq, amqp
Spring Boot Quick
🌿 基于springboot的快速学习示例,整合自己遇到的开源框架,如:rabbitmq(延迟队列)、Kafka、jpa、redies、oauth2、swagger、jsp、docker、spring-batch、异常处理、日志输出、多模块开发、多环境打包、缓存cache、爬虫、jwt、GraphQL、dubbo、zookeeper和Async等等📌
Stars: ✭ 1,819 (+1180.99%)
Mutual labels:  spring-boot, rabbitmq

Spring Boot AMQP messaging example with RabbitMQ

This is a simple Spring Boot app that shows how to easily configure RabbitMQ with AMQP for producing and consuming messages in default format (java serialized) and JSON.

In this sample project, each message is sent as JSON and then decoded:

  1. on a queue as a generic Message object,
  2. and on a different queue as the original specific class (with JSON deserialization).

Spring Boot AMQP Configuration Example with RabbitMQ

Note that you need a RabbitMQ server instance running locally to be able to run this application. You can use the included docker-compose.yml file to start a new server using Docker: docker-compose up -d

I recommend you to have a look at the full explanation of this code, you can find it on The Practical Developer site.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].