Questions tagged [spring-rabbit]

Spring components for AMQP-based messaging with RabbitMQ.

The Spring AMQP project applies core Spring concepts to the development of AMQP-based messaging solutions. It provides a "template" as a high-level abstraction for sending and receiving messages. It also provides support for Message-driven POJOs. Its libraries facilitate management of AMQP resources while promoting the use of dependency injection and declarative configuration. In all of these cases, you will see similarities to the JMS support in the Spring Framework.

The spring-amqp sub-project is a general abstraction, with spring-rabbit being the implementation for RabbitMQ.

Resources

See Also

1331 questions
-1
votes
1 answer

RabbitMQ queue not created at runtime

I have an easy example of spring boot 1.5.22 + amqp and the problem is that queue is not getting created dynamically, and it should. @Component class ReceiverComponent { @RabbitListener(queues = 'spring-boot-queue-2') public void receive_2(String…
Marko
  • 11
  • 3
-1
votes
1 answer

Handling messages from a rabbitmq error queue

I have set up a spring boot rabbitmq integration, the integration works fine. I am sending messages to a queue and consuming from the queue. If any error occurs, the message gets retried a set amount of times after which the message is placed on an…
SEED
  • 57
  • 1
  • 12
-1
votes
1 answer

Is there any way i can check that a messags has been published?

I need to check for messages inside a RabbitMQ queue using Java. I have gone through the standard Java API documentation of RabbitMQ but it seems that there is no standard way described there. I have also referred to this but failed to find any…
mohor chatt
  • 356
  • 1
  • 8
-1
votes
1 answer

rabbit-mq Queue not auto-deleted after consumers zero

I set option autoDelete as true for a queue, but sometime even if consumer is 0, the queue still exist How can I find the reason? and how to delete? thanks
kumar
  • 497
  • 4
  • 12
-1
votes
1 answer

For high message volume, why for the same message am I getting frame_size error in rabbitmq?

I have a direct type exchange which is routing a message to a queue. I am getting frame size error. I am using Apache camel camel_rabbitmq component for a message publishing.
-1
votes
1 answer

Setting timeout consumer queues (spring-rabbit)

We are using rabbitmq and our producers and consumers were developed using spring-boot-starter-amqp (spring-rabbit 1.5.6.RELEASE), We've had some deadlocks in our consumers in production and, when it happened, we needed restart our consumers to…
-1
votes
1 answer

How to re-declare queue if it's get deleted in RPC RabbitMQ

I am using java client of https://www.rabbitmq.com/tutorials/tutorial-six-java.html . My setup is RPC. My server is creating queue and client is also creating same queue and sending the message. After receiving message server is performing some…
Asad
  • 2,782
  • 2
  • 16
  • 17
-1
votes
1 answer

Read from rabbit mq very slow

I have a job that has to read from a rabbitmq queue and write it to a data-store. Currently I am using AmqpItemReader for reading messages from the queue. The data I read is in Json format and all my ItemProcessor does is to serialize the json to a…
Wizard
  • 1,154
  • 2
  • 14
  • 41
-1
votes
1 answer

Any Unit & Integration Testing tool or Framework for Spring Boot RabbitMQ?

I have developed an application with multiple producers & consumers using Spring boot & RabbitMQ. Application is working fine without any issues, but still i want to do unit testing & integration testing.I browsed google but no luck not getting…
VelNaga
  • 3,593
  • 6
  • 48
  • 82
-1
votes
1 answer

RabbitMQ Spring boot org.springframework.beans.factory.NoSuchBeanDefinitionException

I try to learn RabbitMQ with SpringBoot i have create 2 classes : Receiver.java (it's a POJO): This class will receive the message. public class Receiver { private CountDownLatch latch = new CountDownLatch(1); public void…
zaafrani
  • 65
  • 3
  • 9
-1
votes
1 answer

Spring rabbitMQ DLQ on missing message_id

Currently I've set up my message listener container to use spring-retry for handling retries but when someone sends a message without giving a message-id, the message listener stops. Can this behaviour be changes so that it puts the message on the…
Domeniquetill
  • 108
  • 1
  • 8
1 2 3
88
89