參考網址:https://www.cnblogs.com/bincoding/p/7658293.html
1. ActiveMQ消息總線簡介
消息隊列(Message Queue,簡稱MQ),從字面意思上看,本質是個隊列,FIFO先入先出,隻不過隊列中存放的内容是
message
而已。主要用作不同程序、應用間的通信方式。
常見的消息隊列有:rabbitMQ、activeMQ、zeroMQ、Kafka、Redis 比較 。
其中ActiveMQ是Apache出品的一款開源消息總線,支援多種語言和協定編寫用戶端。語言: Java,C,C++,C#,Ruby,Perl,Python,PHP。應用協定: OpenWire,Stomp REST,WS Notification,XMPP,AMQP。
ActiveMQ主要有兩種消息分發方式:Queue和Topic。
Queue類似程式設計語言中的Queue,每條消息隻會被一個消費者接收;
Topic類似廣播,發送的消息會被多個消費者接受,前提是訂閱了該主題的消息。
2. ActiveMQ安裝
2.1. 下載下傳ActiveMQ
官方網站下載下傳位址:http://activemq.apache.org/
2.2. 運作ActiveMQ
解壓縮apache-activemq-5.10.0-bin.zip,然後輕按兩下apache-activemq-5.10.0\bin\win32\activemq.bat運作ActiveMQ程式。
看見控制台最後一行輸出: “access to all MBeans is allowed” 證明啟動成功。
啟動ActiveMQ以後,可以使用浏覽器登陸:http://localhost:8161/admin/驗證, 預設使用者名是:admin 密碼是:admin
(前提是安裝好Java環境)
同時下載下傳.net版Dll:Apache.NMS-1.7.0-bin.zip和Apache.NMS.ActiveMQ-1.7.0-bin.zip
都從這裡下載下傳:http://archive.apache.org/dist/activemq/apache-nms/1.7.0/
3. ActiveMQ Queue
在ActiveMQ中Queue是一種點對點的消息分發方式,生産者在隊列中添加一條消息,然後消費者消費一條消息,這條消息保證送達并且隻會被一個消費者接收。
這裡使用Winform編寫程式,其中需要添加兩個dll,都在Apache.NMS-1.7.0-bin.zip和Apache.NMS.ActiveMQ-1.7.0-bin.zip中。

// 生産者
// 需要添加一個label, button, textbox
public Form1()
{
InitializeComponent();
InitProducer();
}
private IConnectionFactory factory;
public void InitProducer()
{
try
{
//初始化工廠,這裡預設的URL是不需要修改的
factory = new ConnectionFactory("tcp://localhost:61616");
}
catch
{
lbMessage.Text = "初始化失敗!!";
}
}
private void btnConfirm_Click(object sender, EventArgs e)
{
//通過工廠建立連接配接
using (IConnection connection = factory.CreateConnection())
{
//通過連接配接建立Session會話
using (ISession session = connection.CreateSession())
{
//通過會話建立生産者,方法裡面new出來的是MQ中的Queue
IMessageProducer prod = session.CreateProducer(new Apache.NMS.ActiveMQ.Commands.ActiveMQQueue("firstQueue"));
//建立一個發送的消息對象
ITextMessage message = prod.CreateTextMessage();
//給這個對象賦實際的消息
message.Text = txtMessage.Text;
//設定消息對象的屬性,這個很重要哦,是Queue的過濾條件,也是P2P消息的唯一指定屬性
message.Properties.SetString("filter","demo");
//生産者把消息發送出去,幾個枚舉參數MsgDeliveryMode是否長鍊,MsgPriority消息優先級别,發送最小機關,當然還有其他重載
prod.Send(message, MsgDeliveryMode.NonPersistent, MsgPriority.Normal, TimeSpan.MinValue);
lbMessage.Text = "發送成功!!";
txtMessage.Text = "";
txtMessage.Focus();
}
}
}


// 消費者
public Form1()
{
InitializeComponent();
InitConsumer();
}
public void InitConsumer()
{
//建立連接配接工廠
IConnectionFactory factory = new ConnectionFactory("tcp://localhost:61616");
//通過工廠建構連接配接
IConnection connection = factory.CreateConnection();
//這個是連接配接的用戶端名稱辨別
connection.ClientId = "firstQueueListener";
//啟動連接配接,監聽的話要主動啟動連接配接
connection.Start();
//通過連接配接建立一個會話
ISession session = connection.CreateSession();
//通過會話建立一個消費者,這裡就是Queue這種會話類型的監聽參數設定
IMessageConsumer consumer = session.CreateConsumer(new Apache.NMS.ActiveMQ.Commands.ActiveMQQueue("firstQueue"), "filter='demo'");
//注冊監聽事件
consumer.Listener += new MessageListener(consumer_Listener);
//connection.Stop();
//connection.Close();
}
void consumer_Listener(IMessage message)
{
ITextMessage msg = (ITextMessage)message;
//異步調用下,否則無法回歸主線程
tbReceiveMessage.Invoke(new DelegateRevMessage(RevMessage),msg);
}
public delegate void DelegateRevMessage(ITextMessage message);
public void RevMessage(ITextMessage message)
{
tbReceiveMessage.Text += string.Format(@"接收到:{0}{1}", message.Text, Environment.NewLine);
}

我們可以到管理平台 http://localhost:8161 中檢視對應的Queue,生産者産生消息,消費者接收後會删掉消息。
建立項目,更改 connection.ClientId 後可以啟動多個消費者,可以發現每個消費者都有機會接收消息,測試的時候是每個消費者輪流接收一條消息,有興趣的可以自己看一下接收規律。
4. ActiveMQ Topic
Topic和Queue類似,不過生産者發送的消息會被多個消費者接收,保證每個訂閱的消費者都會接收到消息。
在管理平台可以看到每條Topic消息有兩個記錄值,一個是訂閱的消費者數量,一個是已經接收的消費者數量。

//生産者
try
{
//Create the Connection Factory
IConnectionFactory factory = new ConnectionFactory("tcp://localhost:61616/");
using (IConnection connection = factory.CreateConnection())
{
//Create the Session
using (ISession session = connection.CreateSession())
{
//Create the Producer for the topic/queue
IMessageProducer prod = session.CreateProducer(
new Apache.NMS.ActiveMQ.Commands.ActiveMQTopic("testing"));
//Send Messages
int i = 0;
while (!Console.KeyAvailable)
{
ITextMessage msg = prod.CreateTextMessage();
msg.Text = i.ToString();
Console.WriteLine("Sending: " + i.ToString());
prod.Send(msg, Apache.NMS.MsgDeliveryMode.NonPersistent, Apache.NMS.MsgPriority.Normal, TimeSpan.MinValue);
System.Threading.Thread.Sleep(5000);
i++;
}
}
}
Console.ReadLine();
}
catch (System.Exception e)
{
Console.WriteLine("{0}", e.Message);
Console.ReadLine();
}


//消費者
static void Main(string[] args)
{
try
{
//Create the Connection factory
IConnectionFactory factory = new ConnectionFactory("tcp://localhost:61616/");
//Create the connection
using (IConnection connection = factory.CreateConnection())
{
connection.ClientId = "testing listener1";
connection.Start();
//Create the Session
using (ISession session = connection.CreateSession())
{
//Create the Consumer
IMessageConsumer consumer = session.CreateDurableConsumer(new Apache.NMS.ActiveMQ.Commands.ActiveMQTopic("testing"), "testing listener1", null, false);
consumer.Listener += new MessageListener(consumer_Listener);
Console.ReadLine();
}
connection.Stop();
connection.Close();
}
}
catch (System.Exception e)
{
Console.WriteLine(e.Message);
}
}
static void consumer_Listener(IMessage message)
{
try
{
ITextMessage msg = (ITextMessage)message;
Console.WriteLine("Receive: " + msg.Text);
}
catch (System.Exception e)
{
Console.WriteLine(e.Message);
}
}

建立項目,更改connection.ClientId後可以啟動多個消費者,可以發現每個消費者都會接收到消息,訂閱一次後即使下線了,上線之後也會收到消息。
5. ActiveMQ持久化消息
ActiveMQ的另一個問題就是隻要是軟體就有可能挂掉,挂掉不可怕,怕的是挂掉之後把資訊給丢了,是以本節分析一下幾種持久化方式:
5.1 持久化為檔案
ActiveMQ預設就支援這種方式,隻要在發消息時設定消息為持久化就可以了。
打開安裝目錄下的配置檔案:
D:\ActiveMQ\apache-activemq\conf\activemq.xml在越80行會發現預設的配置項:
<persistenceAdapter>
<kahaDB directory="${activemq.data}/kahadb"/>
</persistenceAdapter>
注意這裡使用的是kahaDB,是一個基于檔案支援事務的消息存儲器,是一個可靠,高性能,可擴充的消息存儲器。
他的設計初衷就是使用簡單并盡可能的快。KahaDB的索引使用一個transaction log,并且所有的destination隻使用一個index,有人測試表明:如果用于生産環境,支援1萬個active connection,每個connection有一個獨立的queue。該表現已經足矣應付大部分的需求。
然後再發送消息的時候改變第二個參數為:
MsgDeliveryMode.Persistent
Message儲存方式有2種
PERSISTENT:儲存到磁盤,consumer消費之後,message被删除。
NON_PERSISTENT:儲存到記憶體,消費之後message被清除。
注意:堆積的消息太多可能導緻記憶體溢出。
然後打開生産者端發送一個消息:
不啟動消費者端,同時在管理界面檢視:
發現有一個消息正在等待,這時如果沒有持久化,ActiveMQ當機後重新開機這個消息就是丢失,而我們現在修改為檔案持久化,重新開機ActiveMQ後消費者仍然能夠收到這個消息。
二、持久化為資料庫
我們從支援Mysql為例,先從http://dev.mysql.com/downloads/connector/j/下載下傳mysql-connector-java-5.1.34-bin.jar包放到:
D:\ActiveMQ\apache-activemq\lib目錄下。
打開并修改配置檔案:

<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">
<!-- 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.conf}/credentials.properties</value>
</property>
</bean>
<!-- Allows accessing the server log -->
<bean id="logQuery" class="org.fusesource.insight.log.log4j.Log4jLogQuery"
lazy-init="false" scope="singleton"
init-method="start" destroy-method="stop">
</bean>
<!--
The <broker> element is used to configure the ActiveMQ broker.
-->
<broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.data}">
<destinationPolicy>
<policyMap>
<policyEntries>
<policyEntry topic=">" >
<!-- The constantPendingMessageLimitStrategy is used to prevent
slow topic consumers to block producers and affect other consumers
by limiting the number of messages that are retained
For more information, see:
http://activemq.apache.org/slow-consumer-handling.html
-->
<pendingMessageLimitStrategy>
<constantPendingMessageLimitStrategy limit="1000"/>
</pendingMessageLimitStrategy>
</policyEntry>
</policyEntries>
</policyMap>
</destinationPolicy>
<!--
The managementContext is used to configure how ActiveMQ is exposed in
JMX. By default, ActiveMQ uses the MBean server that is started by
the JVM. For more information, see:
http://activemq.apache.org/jmx.html
-->
<managementContext>
<managementContext createConnector="false"/>
</managementContext>
<!--
Configure message persistence for the broker. The default persistence
mechanism is the KahaDB store (identified by the kahaDB tag).
For more information, see:
http://activemq.apache.org/persistence.html
<kahaDB directory="${activemq.data}/kahadb"/>
-->
<persistenceAdapter>
<jdbcPersistenceAdapter dataDirectory="${activemq.base}/data" dataSource="#derby-ds"/>
</persistenceAdapter>
<!--
The systemUsage controls the maximum amount of space the broker will
use before disabling caching and/or slowing down producers. For more information, see:
http://activemq.apache.org/producer-flow-control.html
-->
<systemUsage>
<systemUsage>
<memoryUsage>
<memoryUsage percentOfJvmHeap="70" />
</memoryUsage>
<storeUsage>
<storeUsage limit="100 gb"/>
</storeUsage>
<tempUsage>
<tempUsage limit="50 gb"/>
</tempUsage>
</systemUsage>
</systemUsage>
<!--
The transport connectors expose ActiveMQ over a given protocol to
clients and other brokers. For more information, see:
http://activemq.apache.org/configuring-transports.html
-->
<transportConnectors>
<!-- DOS protection, limit concurrent connections to 1000 and frame size to 100MB -->
<transportConnector name="openwire" uri="tcp://0.0.0.0:61616?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
<transportConnector name="amqp" uri="amqp://0.0.0.0:5672?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
<transportConnector name="stomp" uri="stomp://0.0.0.0:61613?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
<transportConnector name="mqtt" uri="mqtt://0.0.0.0:1883?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
<transportConnector name="ws" uri="ws://0.0.0.0:61614?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
</transportConnectors>
<!-- destroy the spring context on shutdown to stop jetty -->
<shutdownHooks>
<bean xmlns="http://www.springframework.org/schema/beans" class="org.apache.activemq.hooks.SpringContextHook" />
</shutdownHooks>
</broker>
<bean id="derby-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="root"/>
<property name="password" value=""/>
<property name="maxActive" value="200"/>
<property name="poolPreparedStatements" value="true"/>
</bean>
<!--
Enable web consoles, REST and Ajax APIs and demos
The web consoles requires by default login, you can disable this in the jetty.xml file
Take a look at ${ACTIVEMQ_HOME}/conf/jetty.xml for more details
-->
<import resource="jetty.xml"/>
</beans>
<!-- END SNIPPET: example -->

重新開機ActiveMQ打開phpmyadmin發現多了3張表:
然後啟動生産者(不啟動消費者)
在Mysql中可以找到這條消息:
關掉ActiveMQ并重新開機,模拟當機。
然後啟動消費者:
然後發現Mysql中已經沒有這條消息了。
時間會記錄下一切。
分類: C#