On Fri, Mar 13, 2015 at 8:12 PM, Abhishek Biswas <abhishek...@gmail.com> wrote:
xml it is!
--
You received this message because you are subscribed to the Google Groups "Axon Framework Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to axonframewor...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<bean id="connectionFactory" class ="org.apache.qpid.amqp_1_0.jms.impl.ConnectionFactoryImpl">
<constructor-arg value="${ACTIVEMQ_HOST}" />
<constructor-arg value="${ACTIVEMQ_PORT}" />
<constructor-arg value="${ACTIVEMQ_USER}" />
<constructor-arg value="${ACTIVEMQ_PASSWORD}" />
</bean>
<amqp:terminal id="terminal" exchange-name="Exchange" durable="true" transactional="false"
connection-factory="connectionFactory" message-converter="messageConverter"
routing-key-resolver="routingKeyResolver" serializer="serializer">
<!-- wait-for-publisher-ack="true" -->
<amqp:default-configuration transaction-size="20" transaction-manager="transactionManager"/>
</amqp:terminal>
<amqp:configuration id="fullConfig"
acknowledge="manual" advice-chain="mockAdviceChain" concurrency="1" queue-name="Queue"
executor="executor" error-handler="errorHandler" receive-timeout="10"
recovery-interval="1000" shutdown-timeout="10" transaction-manager="transactionManager"
exclusive="true" transaction-size="200" prefetch="1000"/>
<axon:cluster id="testCluster" default="true">
<axon:meta-data>
<entry key="AMQP.Config">
<amqp:configuration transaction-size="20000"/>
</entry>
</axon:meta-data>
</axon:cluster>
<axon:event-bus id="eventBus" terminal="terminal" />