26 lines
924 B
XML
26 lines
924 B
XML
|
<beans
|
||
|
xmlns="http://www.springframework.org/schema/beans"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
|
||
|
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">
|
||
|
|
||
|
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>
|
||
|
|
||
|
<broker xmlns="http://activemq.apache.org/schema/core"
|
||
|
schedulerSupport="true"
|
||
|
useJmx="true"
|
||
|
brokerName="localhost"
|
||
|
dataDirectory="${activemq.data}">
|
||
|
|
||
|
<persistenceAdapter>
|
||
|
<kahaDB directory="${activemq.data}/kahadb"/>
|
||
|
</persistenceAdapter>
|
||
|
|
||
|
<transportConnectors>
|
||
|
<transportConnector name="openwire" uri="tcp://0.0.0.0:61616"/>
|
||
|
</transportConnectors>
|
||
|
|
||
|
</broker>
|
||
|
|
||
|
</beans>
|