ActiveMQ 详解
1. 如何同步索引库
- 方案一: 在taotao-manager中,添加商品的业务逻辑中,添加一个同步索引库的业务逻辑;
- 缺点:业务逻辑耦合度高,业务拆分不明确;
- 方案二: 业务逻辑在taotato-search中实现,调用服务在taotao-manager实现,业务逻辑分开
- 缺点:服务之间的耦合度变高,服务的启动有先后顺序;
- 方案三: 使用消息队列,MQ是一个消息中间件,包括:ActiveMQ,RabbitMQ,kafka等;
2. ActiveMQ 的消息形式
2.1 对于消息的传递有两种类型:
- 一种是点对点,即一个生产者和一个消费者一一对应;
- 另一种是发布/订阅模式,即一个生产者产生消息并进行发送后,可以由多个消费者进行接收;
2.2 JMS 定义了五种不同的消息正文格式
- StreamMessage: Java原始值的数据流;
- MapMessage: 一套名称-值对
- TestMessage:一个字符串对象
- ObjectMessage:一个序列化的Java对象
- BytesMessage:一个字节的数据流
3. ActiveMQ 的使用方法
3.1 Queue 和 Topic
// 测试类
public class TestActiveMq{
//Queue
//Producer(生产者)
@Test
public void testQueueProducer() throws Exception{
// 1.创建一个连接工厂对象ConnectionFactory对象,需要指定mq服务的ip及端口
ConnectionFactory connectionFactory =
new ActiveMQConnectionFactory("tcp://127.0.0.1:61616");
// 2.使用ConnectionFactory,创建一个连接Connection对象
Connection connection = connectionFactory.createConnection();
// 3.开启连接,调用Connection对象的start方法
connection.start();
// 4.使用Connection对象,创建一个Session对象
// 第一个参数:表示是否开启事务,一般不使用事务;为了保证数据的最终一致,可以使用消息队列实现
// 如果第一个参数为true,第二个参数自动忽略;
// 如果不开启事务,第二个参数为消息的应答模式:包括自动应答和手动应答;一般是自动应答
Session session = connection.createSession(false,Session.AUTO_ACKNOWLEDGE);
// 5. 使用Session对象,创建一个Destination对象,有两种形式: Queue,topic
// 参数表示:消息队列的名称
Queue queue = session.createQueue("test-queue");
// 6. 使用 Session 对象,创建一个Producer对象
MessageProducer producer = session.createProducer(queue);
// 7. 创建一个TextMessage对象
// TextMessage textMessage = new ActiveMQTextMessage();
// textMessage.setText("hello activemq");
TextMessage textMessage = session.createTextMessage("hello activemq");
// 8. 发送消息
producer.send(textMessage);
// 9. 关闭资源
producer.close();
session.close();
connection.close();
}
@Test
public void testQueueConsumer() throws Exception{
// 创建一个连接工厂对象
ConnectionFactory connectionFactory =
new ActiveMQConnectionFactory("tcp://127.0.0.1:61616");
// 使用连接工厂对象,创建一个连接
Connection connection = connectionFactory.createConnection();
// 开启连接
connection.start();
// 使用连接对象,创建一个Session对象
Session session = connection.createSesion(false,Session.AUTO_ACKNOWLEDGE);
// 使用Session,创建一个Destination,Destination 应该和消息的发送端一致
Queue queue = session.createQueue("test-queue");
// 使用Session,创建一个Consumer对象
MessageConsumer consumer = session.createConsumer(queue);
// 向Consumer对象中,设置一个MessageListener对象,用来接收消息
consumer.setMessageListener(new MessageListener(){
public void onMessage(Message message){
// 获取消息的内容
if(message instanceof TextMessage){
TextMessage textMessage = (TextMessage)message;
try{
String text = textMessage.getText();
// 打印消息内容
System.out.println(text);
}catch(JMSException e){
e.printStackTrace();
}
}
}
});
// 系统等待接收消息
// 第一种方式:
/*
* while(true){
* Thread.sleep(100);
* }
*/
// 第二种方式:
System.in.read();
// 关闭资源
consumer.close();
session.close();
connection.close();
}
// Topic
// Producer(生产者)
@Test
public void testTopicProducer() throws Exception{
// 创建一个连接工厂对象
ConnectionFactory connectionFactory =
new ActiveMQConnectionFactory("tcp://127.0.0.1:61616");
// 创建连接
Connection connection = connectionFactory.createConnection();
// 开启连接
connection.start();
// 创建Session
Session session = connection.createSession(false,Session.AUTO_ACKNOWLEDGE);
// 创建Destination,使用topic
Topic topic = session.createTopic("test-topic");
// 创建一个Producer对象
MessageProducer producer = session.createProducer(topic);
// 创建一个TextMessage对象
TextMessage textMessage = session.createTextMessage("hello activemq topic");
// 发送消息
producer.send(textMessage);
// 关闭资源
producer.close();
session.close();
connection.close();
}
@Test
public void testTopicConsumer() throws Exception{
// 创建一个连接工厂对象
ConnectionFactory connectionFactory =
new ActiveMQConnectionFactory("tcp://127.0.0.1:61616");
// 使用连接工厂对象,创建一个连接
Connection connection = connectionFactory.createConnection();
// 开启连接
connection.start();
// 使用连接对象,创建一个Session对象
Session session = connection.createSesion(false,Session.AUTO_ACKNOWLEDGE);
// 使用Session,创建一个Destination,Destination 应该和消息的发送端一致
Topic topic = session.createTopic("test-topic");
// 使用Session,创建一个Consumer对象
MessageConsumer consumer = session.createConsumer(topic);
// 向Consumer对象中,设置一个MessageListener对象,用来接收消息
consumer.setMessageListener(new MessageListener(){
public void onMessage(Message message){
// 获取消息的内容
if(message instanceof TextMessage){
TextMessage textMessage = (TextMessage)message;
try{
String text = textMessage.getText();
// 打印消息内容
System.out.println(text);
}catch(JMSException e){
e.printStackTrace();
}
}
}
});
// 系统等待接收消息
System.out.println("topic 消费者1...");
System.in.read();
// 关闭资源
consumer.close();
session.close();
connection.close();
}
}
3.2 Activemq 整合 Spring
// 导入相关jar包: spring-jms, spring-context-support
// 配置 Activemq 整合 spring, applicationContext-activemq.xml
<!-- 真正可以产生Connection的ConnectionFactory, 由对应的 JMS 服务厂商提供 -->
<bean id="targetConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
<property name="brokerURL" value="tcp://127.0.0.1:61616"/>
</bean>
<!-- Spring 用于管理真正的 ConnectionFactory 的 ConnectioinFactory -->
<bean id="connectioinFactory" class="org.springframework.jms.connection.SingleConnectionFactory">
<property name="targetConnectionFactory" ref="targetConnectionFactory"/>
</bean>
<!-- 配置生产者 -->
<!-- 配置JMSTemplate对象,它可以进行消息的发送,接收等 -->
<bean id="jmsTemplage" class="org.springframework.jms.core.JmsTemplate">
<property name="connectionFactory" ref="connectionFactory"/>
</bean>
<!-- 配置消息的Destination对象 -->
<bean id="test-queue" class="org.apache.activemq.command.ActiveMQQueue">
<constructor-arg name="name" value="test-queue"></constructor-arg>
</bean>
<bean id="test-topic" class="org.apache.activemq.command.ActiveMQTopic">
<constructor-arg name="name" value="test-topic"></constructor-arg>
</bean>
// 测试类
// 发送消息
public class SpringActivemq{
// 使用jmsTemplate发送消息
@Test
public void testJmsTemplate() throws Exception{
// 初始化spring容器
ApplicationContext applicationContext =
new ClassPathXmlApplicationContext("classpath:spring/applicationContext-activemq");
// 从容器中获得JmsTemplage对象
JmsTemplate jmsTemplate = applicationContext.getBean(JmsTemplate.class);
// 从容器中获得Destination对象
Destination destination = (Destination)applicationContext.getBean("test-queue");
// 发送消息
jmsTemplate.send(destination,new MessageCreator(){
public Message createMessage(Session session) throws JMSException{
TextMessage message =
session.createTextMessage("spring activemq send queue message");
return message;
}
});
}
}
// 接收消息
// applicationContext-activemq.xml
<!-- 真正可以产生Connection的ConnectionFactory, 由对应的 JMS 服务厂商提供 -->
<bean id="targetConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
<property name="brokerURL" value="tcp://127.0.0.1:61616"/>
</bean>
<!-- Spring 用于管理真正的 ConnectionFactory 的 ConnectioinFactory -->
<bean id="connectioinFactory" class="org.springframework.jms.connection.SingleConnectionFactory">
<property name="targetConnectionFactory" ref="targetConnectionFactory"/>
</bean>
<!-- 配置消息的Destination对象 -->
<bean id="test-queue" class="org.apache.activemq.command.ActiveMQQueue">
<constructor-arg name="name" value="test-queue"></constructor-arg>
</bean>
<bean id="test-topic" class="org.apache.activemq.command.ActiveMQTopic">
<constructor-arg name="name" value="test-topic"></constructor-arg>
</bean>
<!-- 配置消息的接收者 -->
<!-- 配置监听器 -->
<bean id="myMessageListener" class="com.taotao.search.listener.MyMessageListener"></bean>
<!-- 消息监听容器 -->
<bean class="org.springframework.jms.listener.DefaultMessageListenerContainer">
<property name="connectionFactory" ref="connectionFactory"></property>
<property name="destination" ref="test-queue"></property>
<property name="messageListener" ref="myMessageListener"></property>
</bean>
// 创建接收消息的类
public class MyMessageListener implements MessageListener{
public void onMessage(Message message){
// 接收消息
TextMessage textMessage = (TextMessage)message;
try{
String text = textMessage.getText();
System.out.println(text);
}catch(JMSException e){
e.printStackTrace();
}
}
}
// 接收消息测试类
public class testSpringActiveMq{
@Test
public void testSpringActiveMq() throws Exception{
// 初始化spring容器
ApplicationContext app =
new ClassPathXmlApplicationContext("classpath:spring/applicationContext-activemq");
// 系统等待接收消息
System.in.read();
}
}
ActiveMQ 详解的更多相关文章
- ActiveMQ详解
Apache ActiveMQ介绍 使用MQ的场景 ActiveMQ的安装 收发消息的简单实现 ActiveMQ内部实现 queue和topic 消息持久化 kahadb原理 最关键的6个配置 Apa ...
- ActiveMQ讯息传送机制以及ACK机制详解
[http://www.ylzx8.cn/ruanjiangongcheng/software-architecture-design/11922.html] AcitveMQ:消息存储和分发组件,涉 ...
- ActiveMQ基本详解与总结
MQ简介: MQ全称为Message Queue, 消息队列(MQ)是一种应用程序对应用程序的通信方法.应用程序通过写和检索出入列队的针对应用程序的数据(消息)来通信,而无需专用连接来链接它们.消息传 ...
- ActiveMQ基本详解与总结& 消息队列-推/拉模式学习 & ActiveMQ及JMS学习
转自:https://www.cnblogs.com/Survivalist/p/8094069.html ActiveMQ基本详解与总结 基本使用可以参考https://www.cnblogs.co ...
- 消息中间件ActiveMQ使用详解
消息中间件ActiveMQ使用详解 一.消息中间件的介绍 介绍 消息队列 是指利用 高效可靠 的 消息传递机制 进行与平台无关的 数据交流,并基于 数据通信 来进行分布式系统的集成. 特点(作用) ...
- RabbitMQ,Apache的ActiveMQ,阿里RocketMQ,Kafka,ZeroMQ,MetaMQ,Redis也可实现消息队列,RabbitMQ的应用场景以及基本原理介绍,RabbitMQ基础知识详解,RabbitMQ布曙
消息队列及常见消息队列介绍 2017-10-10 09:35操作系统/客户端/人脸识别 一.消息队列(MQ)概述 消息队列(Message Queue),是分布式系统中重要的组件,其通用的使用场景可以 ...
- ActiveMQ学习总结(5)——Java消息服务JMS详解
JMS: Java消息服务(Java Message Service) JMS是用于访问企业消息系统的开发商中立的API.企业消息系统可以协助应用软件通过网络进行消息交互. JMS的编程过程很简单,概 ...
- redis 五种数据结构详解(string,list,set,zset,hash)
redis 五种数据结构详解(string,list,set,zset,hash) Redis不仅仅支持简单的key-value类型的数据,同时还提供list,set,zset,hash等数据结构的存 ...
- 常见 jar包详解
常见 jar包详解 jar包 用途 axis.jar SOAP引擎包 commons-discovery-0.2.jar 用来发现.查找和实现可插入式接口,提供一些一般类实例化.单件的生命周期 ...
随机推荐
- jdom 读取
读取XML文档 读取文档,首先需要一个xml的解析器,它可以自动的解析出各个元素,并且把子元素作为自己的孩子节点,方便操作. 主要使用的函数: SAXBuilder.build("xxx.x ...
- OpenLDAP 使用记录
导出数据: slapcat -l export.ldif
- scala,spark练习题提高
1.求每家公司有哪些产品 val arr3 = List("Apache" -> "Spark", "Apache" -> &q ...
- linux - camera capture
//cut a picture#include <stdio.h>#include <stdlib.h>#include <string.h>#include &l ...
- Maven基础命令
Maven 参数 -D 传入属性参数 -P 使用pom中指定的配置 -e 显示maven运行出错的信息 -o 离线执行命令,即不去远程仓库更新包 -X 显示maven允许的debug信息 -U 强制去 ...
- etl工具,kettle实现循环
Kettle是一款国外开源的ETL工具,纯Java编写,可以在Window.Linux.Unix上运行,绿色无需安装,数据抽取高效稳定. 业务模型: 在关系型数据库中有张很大的数据存储表,被设计成奇偶 ...
- 【转】伪O2O已死?2016年实体零售将迎来真正的O2O
O2O果真如所谓的经济学家许小年所说“是两边都是零,中间一个2货”吗?我觉得,经济学家不是说相声的,这种哗众取宠的观点不应该出自一个严谨的经济学家之口.而且,我也不认为许小年真正懂什么叫O2O. 但O ...
- Differential Geometry之第八章常Gauss曲率曲面
第八章.常Gauss曲率曲面 1.常正Gauss曲率曲面 2.常负Gauss曲率曲面与Sine-Gordon方程 3.Hilbert定理 4.Backlund变换 4.1.线汇与焦曲面 4.2.Bac ...
- web 汇率
http://www.cnblogs.com/beimeng/p/3789940.html 网站虽小,五脏俱全(干货) 前言 最近一个朋友让帮忙做一个汇率换算的网站,用业余时间,到最后总算是实现了 ...
- python3----scrapy(笔记)
import scrapy import sys # import io # sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='gb ...