ActiveMQ XML配置文件

 

ActiveMQ包含了很多features(详见http://activemq.apache.org/features.html ), 
不同的需求,不同的环境,需要不同的features,当然需要不同的配置。在这里我只写了最基本的配置,算是抛砖了,希望引出更多关于ActiveMQ的高级配置。
假设已经正确安装ActiveMQ5.0,同时及其IP地址为192.168.1.148,具体使用时可以改为自己的IP。下面讲解的配置实现的features如下:

   1. 客户端可以通过tcp://192.168.1.148连接ActiveMQ。
   2. 消息持久化保存,重启服务器不会丢失消息。
   3. 可以通过http://192.168.1.148:8161/admin监控ActiveMQ服务器

配置

ActiveMQ默认使用的是XML格式配置,从4.0版本开始用MBean的方式实现XML配置,配置文件在${activemq.home}/conf目录下,文件名为activemq.xml。最新的默认配置见
http://svn.apache.org/repos/asf/activemq/trunk/assembly/src/release/conf/activemq.xml 。下面为本篇文章使用的配置,及重要部分的解释。

 

Xml代码 复制代码  收藏代码
  1.  1. <beans     
  2.  2.   <SPAN class=hilite2>xml</SPAN>ns="http://www.springframework.org/schema/beans"     
  3.  3.   <SPAN class=hilite2>xml</SPAN>ns:amq="http://<SPAN class=hilite1>activemq</SPAN>.org/config/1.0"     
  4.  4.   <SPAN class=hilite2>xml</SPAN>ns:xsi="http://www.w3.org/2001/<SPAN class=hilite2>XML</SPAN>Schema-instance"  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd      
  5.  5.   http://<SPAN class=hilite1>activemq</SPAN>.org/config/1.0 http://<SPAN class=hilite1>activemq</SPAN>.apache.org/schema/<SPAN class=hilite1>activemq</SPAN>-core.xsd      
  6.  6.   http://<SPAN class=hilite1>activemq</SPAN>.apache.org/camel/schema/spring>     
  7.  7.        
  8.  8.   <!-- persistent="true"表示要持久化存储消息,和子元素persistenceAdapter结合使用 -->     
  9.  9.   <!-- dataDirectory默认的存储持久化数据的目录 -->     
  10. 10.   <!-- brokerName 设置broker的name,在注意在网络上必须是唯一的-->     
  11. 11.   <!-- 更多参考http://<SPAN class=hilite1>activemq</SPAN>.apache.org /xbean-<SPAN class=hilite2>xml</SPAN>-reference-50.html#XBean<SPAN class=hilite2>XML</SPAN>Reference5.0-brokerelement -->     
  12. 12.   <broker <SPAN class=hilite2>xml</SPAN>ns="http://<SPAN class=hilite1>activemq</SPAN>.org/config/1.0" brokerName="192.168.1.148" persistent ="true" dataDirectory="${<SPAN class=hilite1>activemq</SPAN>.base}/data" useShutdownHook="false">     
  13. 13.        
  14. 14.     <!-- Destination specific policies using destination names or wildcards -->     
  15. 15.     <!-- wildcards意义见http://<SPAN class=hilite1>activemq</SPAN>.apache.org/wildcards.html -->     
  16. 16.     <destinationPolicy>     
  17. 17.       <policyMap>     
  18. 18.         <policyEntries>     
  19. 19.        <!-- 这里使用了wildcards,表示所有以EUCITA开头的topic -->     
  20. 20.           <policyEntry topic="EUCITA.>" producerFlowControl="false" memoryLimit="10mb">     
  21. 21.             <!-- 分发策略 -->     
  22. 22.         <dispatchPolicy>     
  23. 23.           <!-- 按顺序分发 -->     
  24. 24.               <strictOrderDispatchPolicy/>     
  25. 25.             </dispatchPolicy>     
  26. 26.         <!--  恢复策略-->     
  27. 27.             <subscriptionRecoveryPolicy>     
  28. 28.           <!-- 只恢复最后一个message -->     
  29. 29.               <lastImageSubscriptionRecoveryPolicy/>     
  30. 30.             </subscriptionRecoveryPolicy>     
  31. 31.           </policyEntry>     
  32. 32.         </policyEntries>     
  33. 33.       </policyMap>     
  34. 34.     </destinationPolicy>     
  35. 35.      
  36. 36.     <!-- The transport connectors <SPAN class=hilite1>ActiveMQ</SPAN> will listen to -->     
  37. 37.     <transportConnectors>     
  38. 38.        <transportConnector name="openwire" uri="tcp://192.168.1.148:61616" discoveryUri="multicast://default"/>     
  39. 39.        <transportConnector name="ssl"     uri="ssl://192.168.1.148:61617"/>     
  40. 40.        <transportConnector name="stomp"   uri="stomp://192.168.1.148:61613"/>     
  41. 41.        <transportConnector name="xmpp"    uri="xmpp://192.168.1.148:61222"/>     
  42. 42.     </transportConnectors>     
  43. 43.          
  44. 44.     <!-- 消息持久化方式 -->     
  45. 45.     <persistenceAdapter>     
  46. 46.       <amqPersistenceAdapter directory="${<SPAN class=hilite1>activemq</SPAN>.base}/data"/>     
  47. 47.     </persistenceAdapter>     
  48. 48. </broker>     
  49. 49.      
  50. 50.   <!-- lets create a command agent to respond to message based admin commands on the <SPAN class=hilite1>ActiveMQ</SPAN>.Agent topic -->     
  51. 51.     <commandAgent <SPAN class=hilite2>xml</SPAN>ns="http://<SPAN class=hilite1>activemq</SPAN>.org/config/1.0"/>     
  52. 52.         
  53. 53.   <!-- An embedded servlet engine for serving up the Admin console -->     
  54. 54.   <jetty <SPAN class=hilite2>xml</SPAN>ns="http://mortbay.com/schemas/jetty/1.0">     
  55. 55.     <connectors>     
  56. 56.       <nioConnector port="8161" />     
  57. 57.     </connectors>     
  58. 58.      
  59. 59.     <handlers>     
  60. 60.       <webAppContext contextPath="/admin" resourceBase="${<SPAN class=hilite1>activemq</SPAN>.base}/webapps/admin" logUrlOnStart="true" />           
  61. 61.       <webAppContext contextPath="/demo" resourceBase="${<SPAN class=hilite1>activemq</SPAN>.base}/webapps/demo" logUrlOnStart="true" />             
  62. 62.     </handlers>     
  63. 63.   </jetty>       
  64. 64. </beans>    

 注释

关于XML配置中元素的具体信息可以参考http://activemq.apache.org/xbean-xml-reference-50.html 下面介绍本篇配置使用的一些重要元素。
DispathPolicy

ActiveMQ支持3中不同的分发策略(避免翻译了以后误解,这里用原文):

   1. <roundRobinDispatchPolicy>:Simple dispatch policy that sends a message to every subscription that matches the message.
   2. <simpleDispatchPolicy>:Simple dispatch policy that sends a message to every subscription that matches the message.
   3. <strictOrderDispatchPolicy>:Dispatch policy that causes every subscription to see messages in the same order.

SubscriptionRecoveryPolicy

ActiveMQ支持6种恢复策略,可以自行选择使用不同的策略

   1. <fixedCountSubscriptionRecoveryPolicy>: keep a fixed count of last messages.
   2. <fixedSizedSubscriptionRecoveryPolicy>: keep a fixed amount of memory available in RAM for message history which is evicted in time order.
   3. <lastImageSubscriptionRecoveryPolicy>:only keep the last message.
   4. <noSubscriptionRecoveryPolicy>:disable recovery of messages.
   5. <queryBasedSubscriptionRecoveryPolicy>:perform a user specific query mechanism to load any messages they may have missed.
   6. <timedSubscriptionRecoveryPolicy>:keep a timed buffer of messages around in memory and use that to recover new subscriptions.

PersistenceAdapter

http://activemq.apache.org/persistence 讲解了关于persistence的信息。ActiveMQ5.0使用AMQ Message Store 持久化消息,这种方式提供了很好的性能(The AMQ Message Store is an embeddable transactional message storage solution that is extremely fast and reliable.)默认使用该存储方式即可,如果想使用JDBC来存储,可以查找文档配置。
Summary

本篇文章只提供了基本配置信息。如果需要更多的文章,可以查看ActiveMQ的文档。

讲了安装和简单的配置,下一篇将介绍和Sping的整合,以及多个queue,多个topic,多个producer,多个consumer的配置,使用。

ActiveMQ Broker 配置文件的位置取决于你是如何部署 ActiveMQ Broker 的。以下是一些常见的部署方式以及对应的配置文件位置: 1. 在本地开发环境中,ActiveMQ Broker 可能作为一个嵌入式组件来使用,此时你可以在你的代码中通过配置文件的路径来加载配置文件。例如: ```java BrokerService broker = new BrokerService(); broker.setBrokerName("myBroker"); broker.addConnector("tcp://localhost:61616"); broker.setPersistent(false); broker.setUseJmx(true); broker.setSchedulerSupport(true); broker.setAdvisorySupport(true); broker.setPlugins(new BrokerPlugin[] {new MyPlugin()}); broker.setDestinations(new ActiveMQDestination[] {new ActiveMQQueue("myQueue")}); broker.start(); ``` 在上述例子中,你可以通过调用 `broker.setPlugins()` 方法来加载插件,通过调用 `broker.setDestinations()` 方法来配置 ActiveMQ Broker 中的队列和主题。 2. 如果你是以独立进程方式运行 ActiveMQ Broker,那么配置文件通常位于 ActiveMQ 安装目录下的 `conf/activemq.xml` 文件中。你可以编辑该文件来配置 ActiveMQ Broker 的行为。例如: ```xml <broker xmlns="http://activemq.apache.org/schema/core" brokerName="myBroker" dataDirectory="${activemq.data}"> <plugins> <bean id="myPlugin" class="com.example.MyPlugin"/> </plugins> <destinations> <queue physicalName="myQueue"/> </destinations> <transportConnectors> <transportConnector name="openwire" uri="tcp://localhost:61616"/> </transportConnectors> </broker> ``` 在上述例子中,你可以通过在 `<plugins>` 元素中添加插件来加载插件,通过在 `<destinations>` 元素中配置 ActiveMQ Broker 中的队列和主题。 希望这些信息可以帮助你找到 ActiveMQ Broker 配置文件的位置。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值