Today, will quickly go through Spring Boot Messaging implementation using RabbitMQ - AMQP. AMQP stands for Advanced Messaging Queuing Protocol. It is an open standard wire specification for asynchronous messaging based communication. It provides a description on how a message should be constructed. The widely used AMQP brokers are RabbitMQ, StormMQ and OpenAMQ. Brokers role … Continue reading SpringBoot and RabbitMQ Messaging – AMQP
Tag: java
Java Releases and Future Projects
Hi there, Now a days Oracle has changed the released strategy for JDK. As of now JDK major version come out every 2 years or so and sometimes it took a longer period also. Now it has been changed and we no longer have a java road map that calls out which feature will come … Continue reading Java Releases and Future Projects
Java : Singleton and Clone
Hi Folks! Does clone create a another singleton object ? We all knows that Singleton means creating only one instance of the Class. But what happens when clone() method from objects class is applied on same class. Does it hamper the whole purpose of singleton , if So, is there any other ways to create … Continue reading Java : Singleton and Clone