We have build a solution based on file based delivery using Spring-Integration. This works fine but we need to process many files. We are happy with Spring Integration but we want to scale up. For this we'd like to use a messaging system like Rabbit MQ(or other solutions). Does anybody have experience with this, what's needed to get this working?

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

There is a Spring Extensions project in the making (Spring AMQP) that will have some Spring Integration adapters that will make this easier.

There are several initiatives already out there like: http://www.opencredo.com/technologies/opencredo-amq (basis for Spring AMQP)

Mark Fisher mentioned on the S2G forum that SpringSource is putting some weight behind this, so things look promising.

link|improve this answer
feedback

The Spring AMQP project is now at http://springsource.org/spring-amqp

link|improve this answer
feedback

The FAQ addresses this:

Can I create RabbitMQ applications using web frameworks (eg Spring, or Ruby-On-Rails)?
Yes. To begin with, Spring has good support for message access in Java: the RabbitMQ Java client is simply a POJO library.

You can find documentation about the Java client API here.

link|improve this answer
feedback

Also, the Spring Integration Channel Adapters are in progress within the sandbox: http://git.springsource.org/spring-integration/sandbox

We'd love to get some feedback if you are able to give it a try.

link|improve this answer
That's great news. Unfortunately I'm not in a position to test them right now... – Albert Dec 1 '10 at 15:13
I've tested the AMQP adapters for Spring Integration. So far it's good. You can see it at krams915.blogspot.com/2011/03/… – chris Mar 15 '11 at 4:01
feedback

If you are looking for a pure java based messaging solution, Apache ActiveMQ would be a great fit, it integrates wonderfully with Spring, has an embedded mode where it can brought up in the process space of your application

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.