我想使用Spring AMQP发送和使用自定义对象,如下所示。
制作人代码
记录记录=新记录(“message1”,新日期());
rabbitTemplate.convertAndSend(记录);
任何人都可以提供spring amqp @configuration设置来发送和使用上述消息。感谢!!!
答案 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版本,