Top "Spring-rabbit" questions

Spring components for AMQP-based messaging with RabbitMQ.

Spring amqp converter issue using rabbit listener

I think I am missing something here..I am trying to create simple rabbit listner which can accept custom object …

rabbitmq spring-amqp spring-rabbit
How to deal with JSON message with spring-rabbit in spring boot application?

Here are my code snippets. MQConfiguration class for configuration @Configuration public class MQConfiguration { @Bean public Receiver receiver() { return new Receiver(); } } …

java spring spring-boot spring-amqp spring-rabbit
Channel shutdown: channel error

sometimes i found follow entry in my log file. I have no idea what the problem is. My guess is …

spring rabbitmq amqp spring-rabbit
how to use @queuebinding with @rabbitlistener?

Seems since spring-amqp version 1.5, there is a new annotation @queuebinding。But how to use it, i don't know if it …

rabbitmq spring-amqp spring-rabbit
Spring annotation @Retryable - how to set an interceptor

I am using a @Retryable annotation on a method in a @Serviceclass @Service @EnableRetry public class PushService { @Retryable(maxAttempts=5) public …

java spring spring-rabbit spring-retry
Set message header in rabbitmq while sending

I want to set message header while sending a message to rabbit. I am using below code, but confused how …

jackson rabbitmq amqp spring-amqp spring-rabbit
Disabling the listening to rabbit queues from spring application.properties

I want to create an application-development.properties file in spring to define a dev environment. In this environment want to …

java spring spring-boot spring-rabbit
Automatic retry connection to broker by spring-rabbitmq

I have read this fragment of docs: RabbitMQ Automatic Connection/Topology recovery Since the first version of Spring AMQP, the …

java spring-boot spring-integration spring-amqp spring-rabbit
Spring AMQP - Sender and Receiving Messages

I am facing an issue in receiving a message from RabbitMQ. I am sending a message like below HashMap<…

rabbitmq spring-amqp spring-rabbit
JUnit Tests for RabbitMQ

I am building an application using RabbitMQ with Spring: so far so good. To define Unit Tests I am using …

java spring junit spring-amqp spring-rabbit