Syntax

Home/Bikram Kundu

About Bikram Kundu

I am a Software Craftsman, with slightly more admiration towards design and architecture. Among the few and far developers with proficiency in Java & JavaScript. I am equally in love with SkillIQ and RoleIQ.

Top Youtube Channels for every Java Developer

Everyone today wants to stay up to date in this ultra speed world, especially when it comes to programming knowledge. There were times when a Java developer could survive without much updating themself for years, but those days are gone. Today technology is evolving very fast, we need to sharpen our programming skills to stay relevant with the latest and [Read More]

By |2020-04-01T12:32:59+00:00April 1st, 2020|Categories: Java™|Tags: |

RabbitMQ with Spring AMQP and Spring Boot

In this tutorial, we will explore the use of Spring AMQP to communicate with the RabbitMQ messaging middleware. All the previous article code examples are based on the RabbitMQ-Java-Client library. Spring AMQP also makes use of the same library, however, it provides a practical oriented approach to communicate with RabbitMQ. If you are already familiar with Spring stack, then you [Read More]

By |2021-04-08T05:54:34+00:00March 31st, 2020|Categories: RabbitMQ, Spring Framework|Tags: , |

Complete RabbitMQ Tutorial in Java

Complete RabbitMQ Tutorial in Java with Spring Boot example This is a RabbitMQ Course in Java with asynchronous messaging examples using rabbitmq-java-client, Spring Boot and Spring AMQP. This is a programming course, it focuses more on the asynchronous programming than the admin UI. I have tried to keep the tutorial up-to-date with the latest Java trends. Code Examples [Read More]

By |2020-04-24T18:22:10+00:00March 28th, 2020|Categories: RabbitMQ|Tags: , |

Alternate Exchange to collect the rejected messages in RabbitMQ

You will learn to collect rejected messages in RabbitMQ. There can be several reasons to do that, for example, to track down the spammers in an Open CRM system. We will learn this with an example of a Topic Exchange, please check the previous article on Topic Exchange if you are new to RabbitMQ. What is Alternate Exchange? There will [Read More]

By |2020-04-24T18:22:27+00:00March 27th, 2020|Categories: RabbitMQ|Tags: |

Exchange to Exchange binding in RabbitMQ

It is possible to bind an Exchange to another Exchange just like Exchanges to Queues bindings. An exchange can be bound with another exchange with the source routing rules. The destination exchange finally routes the messages to the Queues bound to it. We will take 2 Exchanges as an example, home-direct-exchange as source and linked-direct-exchange as the destination exchange. The [Read More]

By |2021-04-09T05:33:43+00:00March 26th, 2020|Categories: RabbitMQ|Tags: |

Default Exchange in AMQP – RabbitMQ

Default Exchange in RabbitMQ is not a special type of Exchange in RabbitMQ like Direct Exchange or Topic Exchange. It is a special Direct Exchange with an empty name. In the Elements of AMQP article, you have sent a message directly to a Queue using the empty Exchange name. This is where Default Exchange comes to play. The below image [Read More]

By |2021-04-09T05:31:21+00:00March 25th, 2020|Categories: RabbitMQ|Tags: |

Headers Exchange in AMQP – RabbitMQ

Headers Exchange Type is the most powerful exchange type in AMQP (RabbitMQ). Headers exchanges route a message based on the message headers matching, they ignore routing keys. The diagram here represents 3 Queues (HealthQ, SportsQ, and EducationQ) are bound to the Headers Exchange (my-header-exchange) with JSON like headers. We will discuss each of these headers below in detail. The flow [Read More]

By |2021-04-09T05:32:22+00:00March 25th, 2020|Categories: RabbitMQ|Tags: , |

Topic Exchange in AMQP – RabbitMQ

This article focuses on the Topic Exchange type (amq.topic) in RabbitMQ. You will learn to bind a Queue with a Topic Exchange using a routing key pattern. You have already learned about Exchanges and Queues in the Elements of RabbitMQ. The diagram here explains a producer sends a message to my-topic-exchange , there are 3 Queues bound to this exchange [Read More]

By |2021-04-06T05:09:30+00:00March 23rd, 2020|Categories: RabbitMQ|Tags: , |

Fanout Exchange in AMQP – RabbitMQ (Publish/Subscribe)

This article focuses on the Fanout Exchange type (amq.fanout) in RabbitMQ. You will learn to bind a Queue with a Fanout Exchange using an empty routing key. You have already learned about Exchanges and Queues in the Elements of RabbitMQ. The diagram here explains a producer sends a message to my-fanout-exchange , and it is forwarded to all 3 Queues [Read More]

By |2021-04-06T05:08:20+00:00March 20th, 2020|Categories: RabbitMQ|Tags: , |

Direct Exchange in AMQP – RabbitMQ

This article focuses on the Direct Exchange type (amq.direct) in RabbitMQ. You will learn to bind a Queue with an Exchange using a routing key. You have already learned about Exchanges and Queues in the Elements of RabbitMQ. The diagram here explains a producer sends a message to my-direct-exchange , there are 3 Queues bound to this exchange with 3 [Read More]

By |2021-08-03T15:40:35+00:00March 20th, 2020|Categories: RabbitMQ|Tags: , |
Go to Top