RabbitMQ + Spring AMQP Configuration
I'm currently using ActiveMQ and want to try out RabbitMQ; to that end I need some clarification on the following:
- Can I use org.springframework.amqp.rabbit.listener.adapter.M essageListenerAdapter and org.springframework.amqp.rabbit.listener.SimpleMes sageListenerContainer, to listen for and handle messages like I do with org.springframework.jms.listener.adapter.MessageLi stenerAdapter and org.springframework.jms.listener.DefaultMessageLis tenerContainer?
- The hello world example on github does not demonstrate how to create an exchange or how to bind a queue to it. Can anyone explain how to do so or point me to an example that does?