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 用来发现.查找和实现可插入式接口,提供一些一般类实例化.单件的生命周期 ...
随机推荐
- 坑爹的A标签 href
A标签 href在与click事件同时响应时,如果click事件有提交表单动作,href会阻拦表单提交,解决 1.去掉href 2.href="javascript:void();" ...
- 在sql结果中显示行号
1.准备 create table newtable ( name ), ) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; ); ); ); ); ); 2.实现 ) a ...
- sama5d3 环境检测 adc测试
#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <string.h># ...
- Adroid—— DVM
Android DVM Android 运行环境主要指的虚拟机技术——Dalvik.Android中的所有Java程序都是运行在Dalvik VM上的.Android上的每个程序都有自己的线程, ...
- 基于zookeeper、连接池、Failover/LoadBalance等改造Thrift 服务化
对于Thrift服务化的改造,主要是客户端,可以从如下几个方面进行: 1.服务端的服务注册,客户端自动发现,无需手工修改配置,这里我们使用zookeeper,但由于zookeeper本身提供的客户端使 ...
- MapReduce的InputFormat过程的学习
转自:http://blog.csdn.net/androidlushangderen/article/details/41114259 昨天经过几个小时的学习,把MapReduce的第一个阶段的过程 ...
- zoj 1081:Points Within(计算几何,判断点是否在多边形内,经典题)
Points Within Time Limit: 2 Seconds Memory Limit: 65536 KB Statement of the Problem Several dra ...
- Linq循环DataTable,使用匿名对象取出需要的列
var g_id = context.Request["g_id"]; DataTable dt = new DataTable(); var sql = @"selec ...
- ios 开发之 -- UILabel的text竖行显示
让UILabel的内容竖行显示,我经常用一下两种方式: 第一种:使用换行符 \n label.text = @"请\n竖\n直\n方\n向\n排\n列"; label.number ...
- m2014_c->c语言容器类工具列
转自:http://www.cnblogs.com/sniperHW/category/374086.html cocos2dx内存管理 摘要: cocos2dx基于引用计数管理内存,所有继承自CCO ...