Hello Team,
Does Spring Integration JMS provide support for dBus JMS by Deutsche Bank?
Has anybody tried working with dBus using Spring Integration?
I'm looking for help with integrating the connection factory of dBus JMS with Spring Integrations -
int-jms:outbound-channel-adapter
I'm currently using ActiveMQ and want to replace it with dBus.
Appreciate if any samples can be provided for the same.
Current JMS config below -
Does Spring Integration JMS provide support for dBus JMS by Deutsche Bank?
Has anybody tried working with dBus using Spring Integration?
I'm looking for help with integrating the connection factory of dBus JMS with Spring Integrations -
int-jms:outbound-channel-adapter
I'm currently using ActiveMQ and want to replace it with dBus.
Appreciate if any samples can be provided for the same.
Current JMS config below -
Code:
<!-- Inbound Connection Factory -->
<bean id="inboundJmsFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
<property name="brokerURL" value="${int.jms.connectionfactory}" />
</bean>
<!-- jms:message-driven-channel-adapter - Defines a JMS Message-Driven inbound
Channel Adapter -->
<int-jms:message-driven-channel-adapter
connection-factory="inboundJmsFactory" destination-name="${int.jms.inbound.queue}"
channel="com.hcl.jms.inbound" extract-payload="true" />
<!-- Outbound Connection Factory -->
<bean id="outboundJmsFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
<property name="brokerURL" value="${int.actmq.jms.connectionfactory}" />
</bean>
<!-- jms:outbound-channel-adapter - Defines an outbound JMS Message-sending
Channel Adapter -->
<int-jms:outbound-channel-adapter
destination-name="${int.jms.outbound.queue}" connection-factory="outboundJmsFactory"
channel="com.hcl.jms.outbound" extract-payload="true" />