如何发送&在Spring AMQP中使用Object?

时间:2013-08-30 06:43:51

标签: rabbitmq config amqp spring-amqp

我想使用Spring AMQP发送和使用自定义对象,如下所示。

制作人代码

记录记录=新记录(“message1”,新日期());
rabbitTemplate.convertAndSend(记录);

任何人都可以提供spring amqp @configuration设置来发送和使用上述消息。感谢!!!

1 个答案:

答案 0 :(得分:5)

你应该看看Sample Applications;其中一些使用@Configuration

但是,基本上,你需要......

@Bean
public SimpleMessageListenerContainer container() {
    SimpleMessageListenerContainer container =
            new SimpleMessageListenerContainer(connectionFactory());
    MessageListenerAdapter adapter = new MessageListenerAdapter(myListener());
    container.setMessageListener(adapter);
    container.setQueues(foo());
    return container;
}

@Bean
public Object myListener() {
    return new Foo();
}

并且听众可以是POJO ......

public class Foo {

    public void handleMessage(Record foo) {
        System.out.println(foo);
    }
}  

编辑:

对于XML版本,

I added a Gist here