[prev in list] [next in list] [prev in thread] [next in thread] 

List:       activemq-commits
Subject:    svn commit: r410511 -
From:       foconer () apache ! org
Date:       2006-05-31 12:51:52
Message-ID: 20060531125153.28EB31A983E () eris ! apache ! org
[Download RAW message or body]

Author: foconer
Date: Wed May 31 05:51:52 2006
New Revision: 410511

URL: http://svn.apache.org/viewvc?rev=410511&view=rev
Log:
default broker config

Added:
    incubator/activemq/trunk/activemq-perftest/src/main/resources/broker-conf/activemq.xml


Added: incubator/activemq/trunk/activemq-perftest/src/main/resources/broker-conf/activemq.xml
                
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-perftest/src/main/resources/broker-conf/activemq.xml?rev=410511&view=auto
 ==============================================================================
--- incubator/activemq/trunk/activemq-perftest/src/main/resources/broker-conf/activemq.xml \
                (added)
+++ incubator/activemq/trunk/activemq-perftest/src/main/resources/broker-conf/activemq.xml \
Wed May 31 05:51:52 2006 @@ -0,0 +1,47 @@
+<!-- START SNIPPET: xbean -->
+<beans xmlns="http://activemq.org/config/1.0">
+  
+  <broker useJmx="false" brokerName="defaultBroker" start="false" persistent="true" \
useShutdownHook="false" deleteAllMessagesOnStartup="true"> +    <persistenceAdapter>
+       <journaledJDBC journalLogFiles="4" journalLogFileSize="32768" \
useJournal="true" useQuickJournal="false" dataSource="#derby-ds" \
dataDirectory="target/defaultBroker-data"/> +    </persistenceAdapter>
+  
+    <transportConnectors>
+       <transportConnector name="default" uri="tcp://localhost:61616"/>
+    </transportConnectors>
+  </broker>
+  <!--  This xbean configuration file supports all the standard spring xml \
configuration options --> +  
+  <!-- Postgres DataSource Sample Setup -->
+  <!-- 
+  <bean id="postgres-ds" class="org.postgresql.ds.PGPoolingDataSource">
+    <property name="serverName" value="localhost"/>
+    <property name="databaseName" value="activemq"/>
+    <property name="portNumber" value="0"/>
+    <property name="user" value="activemq"/>
+    <property name="password" value="activemq"/>
+    <property name="dataSourceName" value="postgres"/>
+    <property name="initialConnections" value="1"/>
+    <property name="maxConnections" value="10"/>
+  </bean>
+  -->
+  
+  <!-- MySql DataSource Sample Setup -->
+  <!-- 
+  <bean id="mysql-ds" class="org.apache.commons.dbcp.BasicDataSource" \
destroy-method="close"> +    <property name="driverClassName" \
value="com.mysql.jdbc.Driver"/> +    <property name="url" \
value="jdbc:mysql://localhost/activemq?relaxAutoCommit=true"/> +    <property \
name="username" value="activemq"/> +    <property name="password" value="activemq"/>
+    <property name="poolPreparedStatements" value="true"/>
+  </bean>
+  -->  
+   
+  <!-- Embedded Derby DataSource Sample Setup -->
+  <bean id="derby-ds" class="org.apache.derby.jdbc.EmbeddedDataSource">
+    <property name="databaseName" value="derbydb"/>
+    <property name="createDatabase" value="create"/>
+  </bean>
+
+</beans>
+<!-- END SNIPPET: xbean -->


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic