1. ActiveMQ

1). ActiveMQ

ActiveMQ是Apache所提供的一个开源的消息系统,完全采用Java来实现,因此,它能很好地支持J2EE提出的JMS(Java Message Service,即Java消息服务)规范。JMS是一组Java应用程序接口,它提供消息的创建、发送、读取等一系列服务。JMS提供了一组公共应用程序接口和响应的语法,类似于Java数据库的统一访问接口JDBC,它是一种与厂商无关的API,使得Java程序能够与不同厂商的消息组件很好地进行通信。

2). Java Message Service(JMS)

JMS支持两种消息发送和接收模型。

  • 一种称为P2P(Ponit to Point)模型,即采用点对点的方式发送消息。P2P模型是基于队列的,消息生产者发送消息到队列,消息消费者从队列中接收消息,队列的存在使得消息的异步传输称为可能,P2P模型在点对点的情况下进行消息传递时采用。

     
    图1.png
  • 另一种称为Pub/Sub(Publish/Subscribe,即发布-订阅)模型,发布-订阅模型定义了如何向一个内容节点发布和订阅消息,这个内容节点称为topic(主题)。主题可以认为是消息传递的中介,消息发布这将消息发布到某个主题,而消息订阅者则从主题订阅消息。主题使得消息的订阅者与消息的发布者互相保持独立,不需要进行接触即可保证消息的传递,发布-订阅模型在消息的一对多广播时采用。

     
    图2.png
3). JMS术语
  • Provider/MessageProvider:生产者
  • Consumer/MessageConsumer:消费者
  • PTP:Point To Point,点对点通信消息模型
  • Pub/Sub:Publish/Subscribe,发布订阅消息模型
  • Queue:队列,目标类型之一,和PTP结合
  • Topic:主题,目标类型之一,和Pub/Sub结合
  • ConnectionFactory:连接工厂,JMS用它创建连接
  • Connnection:JMS Client到JMS Provider的连接
  • Destination:消息目的地,由Session创建
  • Session:会话,由Connection创建,实质上就是发送、接受消息的一个线程,因此生产者、消费者都是Session创建的
4). ActiveMQ下载
 
图3.png
  • bin (windows下面的bat(分32、64位)和unix/linux下面的sh)
  • conf (activeMQ配置目录,包含最基本的activeMQ配置文件)
  • data (默认是空的)
  • docs (index,replease版本里面没有文档,-.-b不知道为啥不带)
  • example (几个例子)
  • lib (activemMQ使用到的lib)
  • webapps 注意ActiveMQ自带Jetty提供Web管控台
  • webapps-demo 示例
  • activemq-all-5.15.3.jar
  • LICENSE.txt
  • README.txt
5). 配置
  • Web控制台账号和密码(apache-activemq-5.15.3\conf)

     
    图4.png
  • 网络端口(apache-activemq-5.15.3\conf)--默认为8161
     
    图5.png
6). 启动

\apache-activemq-5.15.3\bin\win64\目录下双击activemq.bat文件,在浏览器中输入http://localhost:8161/admin/, 用户名和密码输入admin即可

 
图6.png
7). 消息中间件(MOM:Message Orient middleware)

消息中间件有很多的用途和优点:

  • 1 将数据从一个应用程序传送到另一个应用程序,或者从软件的一个模块传送到另外一个模块;
    1. 负责建立网络通信的通道,进行数据的可靠传送。
    1. 保证数据不重发,不丢失
    1. 能够实现跨平台操作,能够为不同操作系统上的软件集成技工数据传送服务
8).什么情况下使用ActiveMQ?
  • 多个项目之间集成
    (1) 跨平台
    (2) 多语言
    (3) 多项目
  • 降低系统间模块的耦合度,解耦
    (1) 软件扩展性
  • 系统前后端隔离
    (1) 前后端隔离,屏蔽高安全区

2. ActiveMQ 示例

1). P2P 示例

I. 导包--activemq-all-5.15.3.jar
II. Producer

/**
* 定义消息的生产者
* @author mazaiting
*/
public class Producer {
// 用户名
private static final String USERNAME = ActiveMQConnection.DEFAULT_USER;
// 密码
private static final String PASSWORD = ActiveMQConnection.DEFAULT_PASSWORD;
// 链接
private static final String BROKENURL = ActiveMQConnection.DEFAULT_BROKER_URL; /**
* 定义消息并发送,等待消息的接收者(消费者)消费此消息
* @param args
* @throws JMSException
*/
public static void main(String[] args) throws JMSException {
// 消息中间件的链接工厂
ConnectionFactory connectionFactory = new ActiveMQConnectionFactory(
USERNAME, PASSWORD, BROKENURL);
// 连接
Connection connection = null;
// 会话
Session session = null;
// 消息的目的地
Destination destination = null;
// 消息生产者
MessageProducer messageProducer = null; try {
// 通过连接工厂获取链接
connection = connectionFactory.createConnection();
// 创建会话,进行消息的发送
// 参数一:是否启用事务
// 参数二:设置自动签收
session = connection.createSession(true, Session.AUTO_ACKNOWLEDGE);
// 创建消息队列
destination = session.createQueue("talkWithMo");
// 创建一个消息生产者
messageProducer = session.createProducer(destination);
// 设置持久化/非持久化, 如果非持久化,MQ重启后可能后导致消息丢失
messageProducer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
// 模拟发送消息
for (int i = 0; i < 5; i++) {
TextMessage textMessage = session.createTextMessage("给妈妈发送的消息:"+i);
System.out.println("textMessage: " + textMessage);
messageProducer.send(textMessage);
} // 如果设置了事务,会话就必须提交
session.commit();
} catch (JMSException e) {
e.printStackTrace();
} finally {
if (null != connection) {
connection.close();
}
}
}
}

III. Consumer

/**
* 定义消息的消费者
* @author mazaiting
*/
public class Consumer {
// 用户名
private static final String USERNAME = ActiveMQConnection.DEFAULT_USER;
// 密码
private static final String PASSWORD = ActiveMQConnection.DEFAULT_PASSWORD;
// 链接
private static final String BROKENURL = ActiveMQConnection.DEFAULT_BROKER_URL; /**
* 接收消息
* @param args
* @throws JMSException
*/
public static void main(String[] args) throws JMSException {
// 消息中间件的链接工厂
ConnectionFactory connectionFactory = null;
// 链接
Connection connection = null;
// 会话
Session session = null;
// 消息的目的地
Destination destination = null;
// 消息的消费者
MessageConsumer messageConsumer = null;
// 实例化链接工厂,创建一个链接
connectionFactory = new ActiveMQConnectionFactory(USERNAME, PASSWORD, BROKENURL); try {
// 通过工厂获取链接
connection = connectionFactory.createConnection();
// 启动链接
connection.start();
// 创建会话,进行消息的接收
session = connection.createSession(true, Session.AUTO_ACKNOWLEDGE);
// 创建消息队列
destination = session.createQueue("talkWithMo");
// 创建一个消息的消费者
messageConsumer = session.createConsumer(destination); // 模拟接收消息
while (true) {
TextMessage textMessage = (TextMessage) messageConsumer.receive(10000);
if (null != textMessage) {
System.out.println("收到消息: " + textMessage);
} else {
break;
}
}
// 提交
session.commit();
} catch (JMSException e) {
e.printStackTrace();
} finally {
if (null != connection) {
connection.close();
}
}
}
}

IV. 测试

  • 先运行生产者Producer

     
    图7.png

ActiveMQ控制台

 
图8.png
  • 再运行消费者Consumer

     
    图9.png

    ActiveMQ控制台

     
    图10.png

V. 消息类型

  • StreamMessage Java原始值的数据流
  • MapMessage 一套名称-键值对
  • TextMessage 一个字符串对象
  • ObjectMessage 一个序列号的Java对象
  • BytesMessage 一个未解释字节的数据流
    VI. 控制台 Queue
  • Messages Enqueued:表示生产了多少条消息,记做P
  • Messages Dequeued:表示消费了多少条消息,记做C
  • Number Of Consumers:表示在该队列上还有多少消费者在等待接受消息
  • Number Of Pending Messages:表示还有多少条消息没有被消费,实际上是表示消息的积压程度,就是P-C
    VII. 签收
    签收就是消费者接受到消息后,需要告诉消息服务器,我收到消息了。当消息服务器收到回执后,本条消息将失效。因此签收将对PTP模式产生很大影响。如果消费者收到消息后,并不签收,那么本条消息继续有效,很可能会被其他消费者消费掉!
  • AUTO_ACKNOWLEDGE:表示在消费者receive消息的时候自动的签收
  • CLIENT_ACKNOWLEDGE:表示消费者receive消息后必须手动的调用acknowledge()方法进行签收
  • DUPS_OK_ACKNOWLEDGE:签不签收无所谓了,只要消费者能够容忍重复的消息接受,当然这样会降低Session的开销
2). request/reply模型

I. 实现思路

 
图11.png

Client的Producer发出一个JMS message形式的request,request上附加了一些额外的属性:

  • correlation ID(用来和返回的correlation ID对比进行验证),
  • JMSReplyTo属性(放置jms message的destination,这样worker的Consumer获得jms message就能得到destination)

Worker的consumer收到requset,处理request并用producer发出reply,destination就从requset的JMSReplyTo属性中得到。

II. Server代码

public class Server implements MessageListener {
// 经纪人链接
private static final String BROKER_URL = "tcp://localhost:61616";
// 请求队列
private static final String REQUEST_QUEUE = "requestQueue";
// 经纪人服务
private BrokerService brokerService;
// 会话
private Session session;
// 生产者
private MessageProducer producer;
// 消费者
private MessageConsumer consumer; private void start() throws Exception {
createBroker();
setUpConsumer();
} /**
* 创建经纪人
* @throws Exception
*/
private void createBroker() throws Exception {
// 创建经纪人服务
brokerService = new BrokerService();
// 设置是否持久化
brokerService.setPersistent(false);
// 设置是否使用JMX
brokerService.setUseJmx(false);
// 添加链接
brokerService.addConnector(BROKER_URL);
// 启动
brokerService.start();
} /**
* 设置消费者
* @throws JMSException
*/
private void setUpConsumer() throws JMSException {
// 创建连接工厂
ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory(BROKER_URL);
// 创建连接
Connection connection = connectionFactory.createConnection();
// 启动连接
connection.start();
// 创建Session
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
// 创建队列
Destination adminQueue = session.createQueue(REQUEST_QUEUE);
// 创建生产者
producer = session.createProducer(null);
// 设置持久化模式
producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
// 创建消费者
consumer = session.createConsumer(adminQueue);
// 消费者设置消息监听
consumer.setMessageListener(this);
} public void stop() throws Exception {
producer.close();
consumer.close();
session.close();
brokerService.stop();
} @Override
public void onMessage(Message message) {
try {
// 创建新消息
TextMessage response = this.session.createTextMessage(); // 判断消息是否是文本消息
if (message instanceof TextMessage) {
// 强转为文本消息
TextMessage textMessage = (TextMessage) message;
// 获取消息内容
String text = textMessage.getText();
// 设置消息
response.setText(handleRequest(text));
}
response.setJMSCorrelationID(message.getJMSCorrelationID());
producer.send(message.getJMSReplyTo(), response);
} catch (JMSException e) {
e.printStackTrace();
}
} /**
* 构建消息内容
* @param text 文本
* @return
*/
private String handleRequest(String text) {
return "Response to '" + text + "'";
} public static void main(String[] args) throws Exception {
Server server = new Server();
// 启动
server.start();
System.out.println();
System.out.println("Press any key to stop the server");
System.out.println();
System.in.read();
server.stop();
}
}

III. Client代码

public class Client implements MessageListener {
// 经纪人链接
private static final String BROKER_URL = "tcp://localhost:61616";
// 请求队列
private static final String REQUEST_QUEUE = "requestQueue";
// 连接
private Connection connection;
// 会话
private Session session;
// 生产者
private MessageProducer producer;
// 消费者
private MessageConsumer consumer;
// 请求队列
private Queue tempDest; public void start() throws JMSException {
// 连接工厂
ActiveMQConnectionFactory activeMQConnectionFactory = new ActiveMQConnectionFactory(BROKER_URL);
// 创建连接
connection = activeMQConnectionFactory.createConnection();
// 开启连接
connection.start();
// 创建会话
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
// 创建队列
Destination adminQueue = session.createQueue(REQUEST_QUEUE);
// 创建生产者
producer = session.createProducer(adminQueue);
// 设置持久化模式
producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
// 创建模板队列
tempDest = session.createTemporaryQueue();
// 创建消费者
consumer = session.createConsumer(tempDest);
// 设置消息监听
consumer.setMessageListener(this);
} /**
* 停止
* @throws JMSException
*/
public void stop() throws JMSException {
producer.close();
consumer.close();
session.close();
} /**
* 请求
* @param request
* @throws JMSException
*/
public void request(String request) throws JMSException {
System.out.println("Request: " + request);
// 创建文本消息
TextMessage textMessage = session.createTextMessage();
// 设置文本内容
textMessage.setText(request);
// 设置回复
textMessage.setJMSReplyTo(tempDest);
// 获取UUID
String correlationId = UUID.randomUUID().toString();
// 设置JMS id
textMessage.setJMSCorrelationID(correlationId);
// 发送消息
this.producer.send(textMessage);
} @Override
public void onMessage(Message message) {
try {
System.out.println("Received response for: " + ((TextMessage)message).getText());
} catch (JMSException e) {
e.printStackTrace();
}
} public static void main(String[] args) throws JMSException, InterruptedException {
Client client = new Client();
// 启动
client.start();
int i = 0;
while(i++ < 10) {
client.request("REQUEST- " + i);
}
Thread.sleep(3000);
client.stop();
}
}

IV. 测试

  • 启动Server

     
    图12.png
  • 启动Client

     
    图13.png

代码下载


如果您觉得我的

作者:_凌浩雨
链接:https://www.jianshu.com/p/8b9bfe865e38
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

分布式--ActiveMQ 消息中间件(一) https://www.jianshu.com/p/8b9bfe865e38的更多相关文章

  1. [转]https://www.jianshu.com/p/06443248f4d8

    eos是什么? 原文 https://www.jianshu.com/p/06443248f4d8 简介 用一句话来定义eos,即:区块链操作系统,支持在它之上构建dapp,支持智能合约.帐户.身份验 ...

  2. fastdfs(https://www.jianshu.com/p/1c71ae024e5e)

    参考 官方网站:https://github.com/happyfish100/ 配置文档:https://github.com/happyfish100/fastdfs/wiki/ 参考资料:htt ...

  3. 分布式ActiveMQ集群

    分布式ActiveMQ集群的部署配置细节: 官方资料:http://activemq.apache.org/clustering.html 基本上看这个就足够了,本文就不具体分析配置文件了. 1.Qu ...

  4. 分布式ActiveMQ集群--转载

    原文地址:http://shensy.iteye.com/blog/1752529 回顾总结前一段时间学习的ActiveMQ分布式集群相关的知识,分享出来希望对看到的人有所帮助. 一.分布式Activ ...

  5. Zabbix调优不完全指南(https://www.jianshu.com/p/2d911d55448f)

    从学习搭建zabbix到完成各类监控.调优.二次开发已经过去了两年,期间通过QQ学习群.zabbix官方社区.各个技术博客整理学习了不少关于各种报错的处理方法,现在将常见的一些报错处理方法整理出来分享 ...

  6. 接口测试之——Charles抓包及常见问题解决(转载自https://www.jianshu.com/p/831c0114179f)

    简介 Charles其实是一款代理服务器,通过成为电脑或者浏览器的代理,然后截取请求和请求结果达到分析抓包的目的.该软件是用Java写的,能够在Windows,Mac,Linux上使用,安装Charl ...

  7. jar与war包区别,转自https://www.jianshu.com/p/3b5c45e8e5bd

    https://www.jianshu.com/p/3b5c45e8e5bd

  8. spring boot整合activemq消息中间件

    spring boot整合activemq消息中间件 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi ...

  9. https://www.jianshu.com/p/1038c6170775

    import os # 方法一: os.walk实现 def items_dir(rootname): l = [] for main_dir, dirs, file_name_list in os. ...

随机推荐

  1. 深入理解JVM之类加载

    ---title: [学习]深入理解JVM之类加载.mddate: 2019-10-20 22:20:06tags: JVM 类加载--- Java类的加载,连接,初始化都是在程序运行期间执行的 ## ...

  2. MySQL中修改多个数据表的字段拼接问题

    错误1: 异常:Truncated incorrect DOUBLE value: 'lili' 问题分析:我的修改sql语句是:update video set vname='汉字' and vdi ...

  3. 怎么解决VirtualBox无法安装增强工具

    点击「设备」-「安装增强功能」,然后就弹出下面这个东西,百度和 bing 了很久,终于解决啦~ Unable to insert the virtual optical disk D:\Program ...

  4. bootstrap-select 插件示例

      本文原创地址:http://www.cnblogs.com/landeanfen/p/7457283.html 一.组件开源地址以及API说明 bootstrap-select开源地址:https ...

  5. mysql密码管理

    1.密码丢失找回: (1)关闭mysql服务进程(2)跳过mysql权限检测:在mysql的配置文件中的mysqld节点下面添加skip-grant-tables的服务器配置项,或者启动服务时加上-- ...

  6. 深入浅出 Java Concurrency - 目录 [转]

    这是一份完整的Java 并发整理笔记,记录了我最近几年学习Java并发的一些心得和体会. J.U.C 整体认识 原子操作 part 1 从AtomicInteger开始 原子操作 part 2 数组. ...

  7. springcloud 与分布式系统(转载)

    原地址:http://blog.csdn.net/neosmith/article/details/51919038 本文不是讲解如何使用spring Cloud的教程,而是探讨Spring Clou ...

  8. 文件上传 - Commons FileUpload介绍

    概述 FileUpload能够以多种不同的方式使用,具体取决于应用程序的要求.在最简单的情况下,调用单个方法来解析servlet请求,然后处理解析出来的Item集合.此外也可以自定义FileUploa ...

  9. [转]SQLserver字符串分割函数

    一.按指定符号分割字符串,返回分割后的元素个数,方法很简单,就是看字符串中存在多少个分隔符号,然后再加一,就是要求的结果. CREATE function Get_StrArrayLength ( ) ...

  10. 2019-10-16-WPF-控件-Content-的内容不显示下划线字符串

    title author date CreateTime categories WPF 控件 Content 的内容不显示下划线字符串 lindexi 2019-10-16 09:21:32 +080 ...