IntroductionActiveMQ provides bridging functionality to other JMS providers that implement the JMS 1.0.2 and above specification. temporary destinations and replyTo destinations in the inbound message exchanges are automatically handled, enabling an ActiveMQ service to handle a foreign JMS TopicRequestor or QueueResquestor exchanges. propertiesJMS Bridge Topic Connector
JMS Bridge Queue Connector
Example XBean ConfigurationThe following example config file <broker xmlns="http://activemq.apache.org/schema/core" id="localbroker" brokerName="localBroker" persistent="false"> <transportConnectors> <transportConnector uri="tcp://localhost:61234" /> </transportConnectors> <jmsBridgeConnectors> <jmsQueueConnector outboundQueueConnectionFactory="#remoteFactory"> <inboundQueueBridges> <inboundQueueBridge inboundQueueName="org.apache.activemq.network.jms.QueueBridgeXBeanTest" /> </inboundQueueBridges> </jmsQueueConnector> </jmsBridgeConnectors> </broker> <!-- JMS ConnectionFactory to use remote --> <bean id="remoteFactory" class="org.apache.activemq.ActiveMQConnectionFactory"> <property name="brokerURL" value="tcp://localhost:61666" /> </bean> Example pure Spring ConfigurationThe following example shows how to use raw Spring XML to wire together a broker - bridging to a Foreign JMS provider <!-- local broker with embedded Jms to Jms bridge (ok - it's contrived) --> <bean id="localbroker" class="org.apache.activemq.broker.BrokerService" init-method="start"> <property name="brokerName" value = "localBroker"/> <property name="persistent" value = "false"/> <property name="transportConnectorURIs"> <list> <value>tcp://localhost:61234</value> </list> </property> <property name="jmsBridgeConnectors"> <list> <ref bean="jmsConnector"/> </list> </property> </bean> <!-- JMS ConnectionFactory to use local broker (the one with the bridge) --> <bean id="localFactory" class="org.apache.activemq.ActiveMQConnectionFactory"> <property name="brokerURL" value="tcp://localhost:61234" /> </bean> <!--JmsTopicConnector - the Jms bridge --> <bean id="jmsConnector" class="org.apache.activemq.network.jms.JmsTopicConnector"> <property name = "outboundTopicConnectionFactory" ref = "remoteFactory"/> <property name = "inboundTopicBridges"> <list> <ref bean="InboundTopicBridge" /> </list> </property> </bean> <bean id ="InboundTopicBridge" class="org.apache.activemq.network.jms.InboundTopicBridge"> <property name = "inboundTopicName" value = "org.apache.activemq.network.jms.TopicBridgeSpringTest"/> </bean> </beans> Example XBean Configuration to Bridge ActiveMQ to Provider With No URL SetterSome JMS providers, WebLogic for instance, do not expose a setter for connection properties like host and port (setBrokerUrl) on their ConnectionFactory object. In this case you need to set outboundQueueConnectionFactoryName and jndiOutboundTemplate in your activemq.xml config file. <!-- START SNIPPET: example --> <beans> <!-- Allows us to use system properties as variables in this configuration file --> <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/> <broker useJmx="true" xmlns="http://activemq.org/config/1.0"> <persistenceAdapter> <journaledJDBC journalLogFiles="5" dataDirectory="${activemq.home}/activemq-data"/> </persistenceAdapter> <transportConnectors> <transportConnector name="default" uri="tcp://localhost:61616" discoveryUri="multicast://default"/> <transportConnector name="stomp" uri="stomp://localhost:61613"/> </transportConnectors> <networkConnectors> <networkConnector name="default" uri="multicast://default"/> </networkConnectors> <jmsBridgeConnectors> <jmsQueueConnector name="JreportRequestBridge-Inbound" jndiOutboundTemplate="#remoteJndi" outboundQueueConnectionFactoryName="jms/ConnectionFactory" localQueueConnectionFactory="#localFactory"> <inboundQueueBridges> <inboundQueueBridge inboundQueueName="jms/queue/jreport/request"/> </inboundQueueBridges> </jmsQueueConnector> </jmsBridgeConnectors> </broker> <!-- Set up the template for connecting to Weblogic --> <bean id="remoteJndi" class="org.springframework.jndi.JndiTemplate"> <property name="environment"> <props> <prop key="java.naming.factory.initial">weblogic.jndi.WLInitialContextFactory</prop> <prop key="java.naming.provider.url">t3://<your ip here>:7001</prop> </props> </property> </bean> <bean id="localFactory" class="org.apache.activemq.ActiveMQConnectionFactory"> <property name="brokerURL" value="tcp://localhost:61616" /> </bean> <bean id="localQueue" class="org.apache.activemq.command.ActiveMQQueue"> <constructor-arg value="dynamic/jms.queue.jreport.request"/> </bean> </beans> <!-- END SNIPPET: xbean --> Example pure Spring Configuration for sending messages to external ActiveMQ destination through bridgeSpring beans: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> <bean id="mainBroker" class="org.apache.activemq.broker.BrokerService" init-method="start" destroy-method="stop"> <property name="brokerName" value = "mainBroker"/> <property name="persistent" value="false"/> <property name="transportConnectorURIs"> <list> <value>tcp://localhost:7000</value> </list> </property> </bean> <bean id="bridgedBroker" class="org.apache.activemq.broker.BrokerService" init-method="start" destroy-method="stop"> <property name="brokerName" value = "bridgedBroker"/> <property name="persistent" value="false"/> <property name="transportConnectorURIs"> <list> <value>tcp://localhost:7001</value> </list> </property> <property name="jmsBridgeConnectors"> <list> <bean class="org.apache.activemq.network.jms.JmsQueueConnector"> <property name="outboundQueueConnectionFactory"> <bean class="org.apache.activemq.ActiveMQConnectionFactory"> <property name="brokerURL" value="tcp://localhost:7000" /> </bean> </property> <property name="outboundQueueBridges"> <list> <bean class="org.apache.activemq.network.jms.OutboundQueueBridge"> <constructor-arg value="messages.input"/> </bean> </list> </property> </bean> </list> </property> </bean> </beans> Java code: public class BridgeTest {
public BridgeTest() throws Exception {
Log log = LogFactory.getLog(getClass());
new ClassPathXmlApplicationContext("bridge/context-bridge.xml");
ActiveMQConnection connection = ActiveMQConnection.makeConnection("tcp://localhost:7001");
connection.start();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Destination destination = session.createQueue("messages.input");
MessageProducer producer = session.createProducer(destination);
producer.send(session.createTextMessage("Test Message"));
log.debug("send message");
session.close();
connection.close();
connection = ActiveMQConnection.makeConnection("tcp://localhost:7000");
connection.start();
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
destination = session.createQueue("messages.input");
MessageConsumer consumer = session.createConsumer(destination);
log.debug("receive message");
Message message = consumer.receive(5000);
log.debug("Received: " + message);
session.close();
connection.close();
}
public static void main(String[] args) throws Exception {
new BridgeTest();
}
}
|