]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.activemq.selector/bundles/argeo.slc.activemq.selector.jms/META-INF/spring/activemq.xml
Introduce GIS module
[gpl/argeo-slc.git] / sandbox / argeo.slc.activemq.selector / bundles / argeo.slc.activemq.selector.jms / META-INF / spring / activemq.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:amq="http://activemq.apache.org/schema/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
5 http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">
6
7 <!-- <import resource="classpath:org/argeo/slc/activemq/spring.xml" /> -->
8
9 <!-- Embedded broker -->
10 <amq:broker useJmx="false" persistent="false">
11 <amq:transportConnectors>
12 <amq:transportConnector uri="tcp://localhost:61616" />
13 </amq:transportConnectors>
14 </amq:broker>
15
16 <!-- Connection Factory -->
17 <bean id="jmsConnectionFactory"
18 class="org.springframework.jms.connection.SingleConnectionFactory">
19 <property name="targetConnectionFactory">
20 <bean id="slcDefault.jms.amqConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
21 <property name="brokerURL">
22 <value>tcp://localhost:61616</value>
23 </property>
24 </bean>
25 </property>
26 </bean>
27 </beans>