ActiveMQ ComponentThe ActiveMQ component allows messages to be sent to a JMS URI formatactivemq:[topic:]destinationName So for example to send to queue FOO.BAR you would use activemq:FOO.BAR You can be completely specific if you wish via activemq:queue:FOO.BAR If you want to send to a topic called Stocks.Prices then you would use activemq:topic:Stocks.Prices Configuring the Connection FactoryThe following test case camelContext.addComponent("activemq", activeMQComponent("vm://localhost?broker.persistent=false")); See Also |