配置文件如下
<!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements. See the NOTICE file distributed with
    this work for additional information regarding copyright ownership.
    The ASF licenses this file to You under the Apache License, Version 2.0
    (the"License"); you may not use this file except in compliance with
    the License. You may obtain a copy of the License at
   
    http://www.apache.org/licenses/LICENSE-2.0
   
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an"AS IS"BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-->
<!-- START SNIPPET: example -->
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:amq="http://activemq.apache.org/schema/core"
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-2.0.xsd
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd   
http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd">

<!-- Allows us to use system properties as variables in this configuration file -->
    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
         <property name="locations">
            <value>file:///${activemq.base}/conf/credentials.properties</value>
         </property>      
    </bean>
<!-- 下面红色字体是为了支持带数据库的主从模式集群的配置,被注释的蓝色字体是系统默认配置,单个activemq是用默认的. -->
    <broker xmlns="http://activemq.org/config/1.0"brokerName="JdbcMasterBroker"persistent="true"useShutdownHook="false">

<!--<broker xmlns="http://activemq.apache.org/schema/core"brokerName="localhost"dataDirectory="${activemq.base}/data"> -->
    
        <!-- Destination specific policies using destination names or wildcards -->
        <destinationPolicy>
            <policyMap>
                <policyEntries>
                    <policyEntry queue=">"memoryLimit="5mb"/>
                    <policyEntry topic=">"memoryLimit="5mb">
                      <!-- you can add other policies too such as these
                        <dispatchPolicy>
                            <strictOrderDispatchPolicy/>
                        </dispatchPolicy>
                        <subscriptionRecoveryPolicy>
                            <lastImageSubscriptionRecoveryPolicy/>
                        </subscriptionRecoveryPolicy>
                      -->
                    </policyEntry>
                </policyEntries>
            </policyMap>
        </destinationPolicy>

<!-- Use the following to configure how ActiveMQ is exposed in JMX -->
        <managementContext>
            <managementContext createConnector="false"/>
        </managementContext>

<!-- The store and forward broker networks ActiveMQ will listen to -->
   <networkConnectors>
            <!-- by default just auto discover the other brokers -->
   <!--         <networkConnector name="default-nc"uri="multicast://default"/> -->
            <!-- Example of a static configuration:-->
          <!-- <networkConnector uri="static://(tcp://localhost:61616,tcp://192.168.2.136:61616)"/>-->

</networkConnectors>
<!-- 下面的配置是和上面的“persistnet=true”相配合使用的。--> 
     <persistenceAdapter>
            <amqPersistenceAdapter syncOnWrite="false"directory="${activemq.base}/data"maxFileLength="20 mb"/>
        </persistenceAdapter>

<!-- Use the following if you wish to configure the journal with JDBC -->
        <!--
        <persistenceAdapter>
            <journaledJDBC dataDirectory="${activemq.base}/data"dataSource="#postgres-ds"/>
        </persistenceAdapter>
        -->

<!-- Or if you want to use pure JDBC without a journal -->
<persistenceAdapter>
<jdbcPersistenceAdapter dataSource="#mysql-ds"/>
</persistenceAdapter>
        <!--
        <persistenceAdapter>
            <jdbcPersistenceAdapter dataSource="#postgres-ds"/>
        </persistenceAdapter>
        -->

<sslContext>
            <sslContext keyStore="file:${activemq.base}/conf/broker.ks"keyStorePassword="password"trustStore="file:${activemq.base}/conf/broker.ts"trustStorePassword="password"/>
        </sslContext>
        
        <!-- The maximum about of space the broker will use before slowing down producers -->
        <systemUsage>
            <systemUsage>
                <memoryUsage>
                    <memoryUsage limit="20 mb"/>
                </memoryUsage>
                <storeUsage>
                    <storeUsage limit="1 gb"name="foo"/>
                </storeUsage>
                <tempUsage>
                    <tempUsage limit="100 mb"/>
                </tempUsage>
            </systemUsage>
        </systemUsage>

<!-- The transport connectors ActiveMQ will listen to -->
        <transportConnectors>
            <transportConnector name="openwire"uri="tcp://localhost:61616" 
discoveryUri="multicast://default"/>
            <transportConnector name="ssl"uri="ssl://localhost:61617"/>
            <transportConnector name="stomp"uri="stomp://localhost:61613"/>
            <transportConnector name="xmpp"uri="xmpp://localhost:61222"/>
        </transportConnectors>

</broker>

<!--
    ** Lets deploy some Enterprise Integration Patterns inside the ActiveMQ Message Broker
    ** For more details see
    **
    ** http://activemq.apache.org/enterprise-integration-patterns.html
    -->
    <camelContext id="camel"xmlns="http://activemq.apache.org/camel/schema/spring">

<!-- You can use a <package> element for each root package to search for Java routes -->
        <package>org.foo.bar</package>

<!-- You can use Spring XML syntax to define the routes here using the <route> element -->
        <route>
            <from uri="activemq:example.A"/>
            <to uri="activemq:example.B"/>
        </route>
    </camelContext>

<!--
    ** Lets configure some Camel endpoints
    **
    ** http://activemq.apache.org/camel/components.html
    -->

<!-- configure the camel activemq component to use the current broker -->
    <bean id="activemq"class="org.apache.activemq.camel.component.ActiveMQComponent">
        <property name="connectionFactory">
          <bean class="org.apache.activemq.ActiveMQConnectionFactory">
            <property name="brokerURL"value="vm://localhost?create=false&amp;waitForStart=10000"/>
            <property name="userName"value="${activemq.username}"/>
            <property name="password"value="${activemq.password}"/>
          </bean>
        </property>
    </bean>

<!-- Uncomment to create a command agent to respond to message based admin commands on the ActiveMQ.Agent topic -->
    <!--
    <commandAgent xmlns="http://activemq.apache.org/schema/core"brokerUrl="vm://localhost"username="${activemq.username}"password="${activemq.password}"/>
    -->

<!-- An embedded servlet engine for serving up the Admin console -->
    <jetty xmlns="http://mortbay.com/schemas/jetty/1.0">
        <connectors>
            <nioConnector port="8161"/>
        </connectors>

<handlers>
            <webAppContext contextPath="/admin"resourceBase="${activemq.base}/webapps/admin"logUrlOnStart="true"/>
            <webAppContext contextPath="/demo"resourceBase="${activemq.base}/webapps/demo"logUrlOnStart="true"/>
            <webAppContext contextPath="/fileserver"resourceBase="${activemq.base}/webapps/fileserver"logUrlOnStart="true"/>
        </handlers>
    </jetty>

<!-- 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://192.168.2.136:3306/activemq?relaxAutoCommit=true"/>
      <property name="username"value="app"/>
      <property name="password"value="app"/>
      <property name="maxActive"value="200"/>
      <property name="poolPreparedStatements"value="true"/>
    </bean>

<!-- Oracle DataSource Sample Setup -->
    <!--
    <bean id="oracle-ds"class="org.apache.commons.dbcp.BasicDataSource"destroy-method="close">
      <property name="driverClassName"value="oracle.jdbc.driver.OracleDriver"/>
      <property name="url"value="jdbc:oracle:thin:@localhost:1521:AMQDB"/>
      <property name="username"value="scott"/>
      <property name="password"value="tiger"/>
      <property name="maxActive"value="200"/>
      <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: example -->

已主从模式运行(192.168.2.137为主,192.168.2.136为从),还需在客户端上运行如下命令:
java.naming.provider.url=failover:(tcp://192.168.2.137:61616,tcp://192.168.2.136:61616)?
randomize=false                          #没有这一行的话,就变成了networks of brokers
initialReconnectDelay=10            #这里的单位是毫秒

activemq的目录里有个example,只要简单配置一下build.xml,即可测试activemq的message的consume和query
<project name="Inbox"default="help"basedir=".">

<property name="class.dir"value="target/classes"/>
    <property name="activemq.home"value=".."/>
<!-- 作为消息consume的使用本地地址,作为消息query的使用consumer的ip地址 -->
    <!-- example program defaults -->
    <property name="url"value="tcp://localhost:61616"/>

activemq持久化配置,设置为主从模式(带复制的主从模式,应用mysql数据库)的更多相关文章

  1. activeMQ 持久化配置

    Mac 中安装activeMQ brew install activemq 启动 activemq start 控制台:在浏览器中输入url: http://localhost:8161/ A:持久化 ...

  2. 烂泥:学习mysql数据库主从同步复制原理

    本文由秀依林枫提供友情赞助,首发于烂泥行天下. 说明本篇文章部分转载自互联网. MySQL的Replication(英文为复制)是一个多MySQL数据库做主从同步的方案,特点是异步复制,广泛用在各种对 ...

  3. linux学习之centos(三):mysql数据库的安装和配置

    前言:mysql简介 说到数据库,我们大多想到的是关系型数据库,比如mysql.oracle.sqlserver等等,这些数据库软件在windows上安装都非常的方便,在Linux上如果要安装数据库, ...

  4. mysql数据库主从同步复制原理

    MySQL的Replication(英文为复制)是一个多MySQL数据库做主从同步的方案,特点是异步复制,广泛用在各种对MySQL有更高性能.更高可靠性要求的场合.与之对应的是另一个同步技术是MySQ ...

  5. springBoot配置activeMq点对点模式消费信息以及独占模式消费如何设置

    1.在pom文件中引入对应jar包 <!--activeMQ start--> <dependency> <groupId>org.springframework. ...

  6. Docker下redis的主从、持久化配置

    Docker下redis的主从.持久化配置 redis是k-v型nosql数据库,支持字符串(string).列表(list).集合(set).散列(hash).有序集合(zset:形如member: ...

  7. 【配置】检测到在集成的托管管道模式下不适用的ASP.NET设置的解决方法(非简单设置为【经典】模式)。

      ×   检测到在集成的托管管道模式下不适用的ASP.NET设置的解决方法(非简单设置为[经典]模式). 我们将ASP.NET程序从IIS6移植到IIS7,可能运行提示以下错误: HTTP 错误 5 ...

  8. ActiveMQ内存配置和密码设置

    1.配置内存 bin中activemq.bat 中的第一行 加上 : REM 配置内存 set ACTIVEMQ_OPTS=-Xms1G -Xmx1G 2.修改控制台密码 1.打开conf/jetty ...

  9. (转)关于ActiveMQ的配置

    目前常用的消息队列组建无非就是MSMQ和ActiveMQ,至于他们的异同,这里不想做过多的比较.简单来说,MSMQ内置于微软操作系统之中,在部署上包含一个隐性条件:Server需要是微软操作系统.(对 ...

随机推荐

  1. Child Action

    Control [ChildActionOnly]      //只能用于Child Action public ActionResult Time() { return PartialView(Da ...

  2. C#读取RSS源,并利用Solr索引

    折磨我几天的问题今天终于解决了,分享一下近期solr使用的一些经验. 本来是用nutch在爬取页面,可是客户需要爬取RSS,而且可以识别那些页面是通过RSS源抓取出来的.nutch虽然自带解析RSS的 ...

  3. 从零开始,学习web前端之HTML5开发

    什么是HTML5 HTML5是HTML最新的修订版本,2014年10月由万维网联盟(W3C)完成标准制定.是下一代 HTML 标准. 为什么要学习HTML5 HTML5定义了一系列新元素,如新语义标签 ...

  4. 深入解析php中的foreach问题

    本篇文章是对php中的foreach问题进行了详细的分析介绍,需要的朋友参考下   前言:php4中引入了foreach结构,这是一种遍历数组的简单方式.相比传统的for循环,foreach能够更加便 ...

  5. Linux操作命令(三)

    本次实验将介绍 Linux 命令中 more.less.head.tail 命令的用法. more less head tail 1.more ·more功能类似cat,cat命令是将整个文件的内容从 ...

  6. Flask实战第66天:celery实现异步任务

    Celery文档:http://docs.celeryproject.org Celery 通过消息进行通信,用专用的工作线程不断监视任务队列以执行新工作. Celery需要消息传输来发送和接收消息. ...

  7. 单能X射线产生方法

    主要是荧光 利用布拉格准则, 关键词如下.. 国内有些专利 monochromating crystal spectrometer 物理实验设备名称翻译 ... 单色光检糖计 monochromati ...

  8. Xamarin中Unsupported major.minor version 52.0问题解决

    Xamarin中Unsupported major.minor version 52.0问题解决 出现这种问题,是由于所使用的Java代码使用Java 8所才具有的特性.这个时候,需要将JDK升级到J ...

  9. FZU - 1492(Problem 1492 地震预测)

    怀特先生是一名研究地震的科学家,最近他发现如果知道某一段时间内的地壳震动能量采样的最小波动值之和,可以有效地预测大地震的发生. 假设已知一段时间的n次地壳震动能量的采样值为a1,a2,-an,那么第i ...

  10. bzoj 3203: [Sdoi2013]保护出题人 凸包

    题目大意: http://www.lydsy.com/JudgeOnline/problem.php?id=3203 题解 首先我们考虑对一大波僵尸来袭的情况进行分析 假设来袭的僵尸是\(\{ a_1 ...