Re: starting and stopping routes created via spring and @Consume

2014-01-15 Thread Jeremy Ashley
Thanks Claus, I looked at the running app via jconsole but didn't see anything useful in the MBeans. Ultimately I didn't use JMX. Instead I've created a simple custom message listener container factory along the lines below. public class CustomMessageListenerContainerFactory implements Mes

starting and stopping routes created via spring and @Consume

2014-01-14 Thread Jeremy Ashley
Hi I'm looking to understand how I can manage routes created via the @Consume annotation as per the example below. import org.apache.camel.Consume; public class InventoryUpdater { @Consume(uri = "jms:messageLogger") public void logMessage(String message) {