Top "Spring-rabbit" questions

Spring components for AMQP-based messaging with RabbitMQ.

Prevent @RabbitListener in spring-rabbit from trying to connect to server during integration test

I want to run some acceptance tests for my services that are using rabbitMq but I want to ignore all …

java spring rabbitmq spring-rabbit
Manually ack messages in RabbitMQ

Previously I was reading all the messages present in the queue, but now I have to return specific amount of …

rabbitmq spring-amqp spring-rabbit
Is it possible to pass JSON object to the RabbitMQ queue using java application?

I want to pass JSON object to the RabbitMQ queue. In the below code, I am using obj.toJSONString().getBytes() …

java json spring-boot rabbitmq spring-rabbit
Spring rabbitmq send to exchange with dynamic binding

I try to use TopicExchange for masking a messages. Config: <rabbit:connection-factory id="connectionFactory" host="localhost" username="guest" password="…

java spring rabbitmq spring-rabbit rabbitmq-exchange
Spring Cloud Stream message from/to JSON conversion configuration

I am using Spring Cloud Stream, with RabbitMQ binder. It works great with byte[] payload and Java native serialization, but …

json spring-cloud spring-rabbit spring-cloud-stream
Spring RabbitTemplate - How to create queues automatically upon send

I am using RabbitMQ together with Spring's RabbitTemplate. When sending messages to queues using the template send methods, I want …

java spring rabbitmq spring-amqp spring-rabbit
Send files through RabbitMQ

Is it a good idea to send files with size about 1Mb through RabbitMQ? I want to send message in …

rabbitmq spring-amqp spring-rabbit