]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/modules/org.argeo.server.activemq.broker/META-INF/spring/activemq-broker.xml
[maven-release-plugin] prepare for next development iteration
[lgpl/argeo-commons.git] / server / modules / org.argeo.server.activemq.broker / META-INF / spring / activemq-broker.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 <bean
8 class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
9 <property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
10 <property name="ignoreUnresolvablePlaceholders" value="true" />
11 <property name="locations">
12 <value>osgibundle:activemq.properties
13 </value>
14 </property>
15 </bean>
16
17 <!-- Embedded broker -->
18 <amq:broker id="broker" useJmx="false" persistent="false">
19 <amq:transportConnectors>
20 <amq:transportConnector uri="${argeo.server.jms.url}" />
21 <!-- <amq:transportConnector uri="xmpp://localhost:61222" /> -->
22 </amq:transportConnectors>
23 </amq:broker>
24 </beans>