Re: using spring to build ActiveMQ clients
Try camel? Put a bunch of files in a directory and just write from("file://somedirectory?noop=true").to("activemq:SomeQueue"); Then if you want configure your endpoint / connection factory to whatever QoS you need. http://activemq.apache.org/camel/ http://activemq.apache.org/camel/jms.html 2008
using spring to build ActiveMQ clients
Can this be done? I would like to generate some simple test clients to try out my ActiveMQ servers but don't want to write code to handle all of my different situations. Thanks Mark