activeMQ 点对点消费者生产者示例
ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://10.10.40.174:61616");
Connection connection = null;
Session session = null;
MessageProducer producer = null;
Destination destination = null;
try {
connection = connectionFactory.createConnection("zengjun", "zj");
session = connection.createSession(false, Session.CLIENT_ACKNOWLEDGE);
destination = session.createQueue("TEST.QUEUE.ZJ_02");
producer = session.createProducer(destination);
//设置消息模式,有持久与非持久的
producer.setDeliveryMode(DeliveryMode.PERSISTENT);
connection.start();
double d = Math.random();
InputStream in = new FileInputStream("D:\\2.09M.jar");
BufferedInputStream objBufferedInputStream = new BufferedInputStream(in);
int len = objBufferedInputStream.available();
byte[] bBuffer = new byte[len];
//创建StreamMessage
StreamMessage message = session.createStreamMessage();
objBufferedInputStream.read(bBuffer);
//添加byte数组数据
message.writeBytes(bBuffer);
//添加整型属性
message.setIntProperty("MessageLength1", len);
//添加字符串属性
message.setStringProperty("ID", String.valueOf(d));
in.close();
producer.send(message);
System.out.println("发送消息成功 ID " + String.valueOf(d));
} catch (JMSException e) {
e.printStackTrace();
} catch (Exception ex) {
ex.printStackTrace();
} finally {
//关闭资源
ConnectionUtil.closeSession(session);
ConnectionUtil.closeConnection(connection);
ConnectionUtil.closeMessageProducer(producer);
}
System.out.println("发送结束");
activeMQ 点对点消费者代码示例
// 创建连接工厂
ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://10.10.40.174:61616");
Session session = null;
MessageConsumer consumer = null;
Connection connection = null;
Message message = null;
try {
// 访问的用户与密码
connection = connectionFactory.createConnection("ll", "ll");
connection.start();
session = connection.createSession(false, Session.CLIENT_ACKNOWLEDGE);
Destination destination = session.createQueue("TEST.QUEUE.ZJ_02");
consumer = session.createConsumer(destination);
// 无时间参数表示一直等待,直到收到消息。
// message = consumer.receive();
// 有时间参数表示指定时间后没有消息则结束时,如果存在消息就在取完消息后结束
message = consumer.receive(5 * 1000);
// 立即往下执行
// message = consumer.receiveNoWait();
if (message != null) {
System.out.println("收到消息");
if (message instanceof TextMessage) {
TextMessage textMessage = (TextMessage) message;
String text = textMessage.getText();
System.out.println("TEXT:" + text);
textMessage.acknowledge();
} else if (message instanceof StreamMessage) {
StreamMessage streamMessage = (StreamMessage) message;
String strId = streamMessage.getStringProperty("ID");
System.out.println("streammessage ID:" + strId);
streamMessage.acknowledge();
}
} else {
System.out.println("没有收到消息");
}
} catch (Exception e) {
System.out.println("发生异常\n");
e.printStackTrace();
} finally {
//关闭资源
ConnectionUtil.closeAll(connection, session, consumer);
}
activeMQ 发布/订阅,发布者代码示例
ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://10.10.40.174:61616");
TopicConnection connection = null;
ActiveMQTopicSession session = null;
ActiveMQTopicPublisher publisher = null;
ActiveMQTopic topic = null;
try {
connection = connectionFactory.createTopicConnection("zengjun", "zj");
session = (ActiveMQTopicSession) connection.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
topic = (ActiveMQTopic) session.createTopic("TEST.topic.zj");
publisher = (ActiveMQTopicPublisher) session.createPublisher(topic);
publisher.setDeliveryMode(DeliveryMode.PERSISTENT);
connection.start();
int flag = 2;
if (flag == 1) {
TextMessage messageText = session.createTextMessage();
messageText.setText("tipic:" + System.currentTimeMillis());
publisher.publish(messageText);
} else {
StreamMessage messageStream = session.createStreamMessage();
FileInputStream fi = new FileInputStream("D:\\JavaXYQ.zip");
byte[] btyes = new byte[fi.available()];
fi.read(btyes);
messageStream.writeBytes(btyes);
publisher.publish(messageStream);
}
System.out.println("Topic消息发送成功");
} catch (Exception e) {
e.printStackTrace();
} finally {
ConnectionUtil.closeSession(session);
ConnectionUtil.closeConnection(connection);
ConnectionUtil.closeTopicPublisher(publisher);
}
activeMQ 发布/订阅,持久订阅代码示例
ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://10.10.40.174:61616");
TopicConnection connection = null;
ActiveMQTopicSession session = null;
ActiveMQTopic topic = null;
ActiveMQTopicSubscriber subscriber = null;
try {
connection = connectionFactory.createTopicConnection("zengjun", "zj");
connection.setClientID("client_ID_test");
connection.start();
session = (ActiveMQTopicSession) connection.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
topic = (ActiveMQTopic) session.createTopic("TEST.topic.zj");
//创建持久订阅
subscriber = (ActiveMQTopicSubscriber) session.createDurableSubscriber(topic, "Subscriber_name_test");
subscriber.setMessageListener(this);
} catch (Exception e) {
e.printStackTrace();
} finally {
// ConnectionUtil.closeSession(session);
// ConnectionUtil.closeConnection(connection);
// ConnectionUtil.closeTopicSubscriber(subscriber);
}
}
public void onMessage(Message message) {
System.out.println("收到消息");
try {
if (message != null) {
if (message instanceof TextMessage) {
TextMessage textMessage = (TextMessage) message;
System.out.println(textMessage.getText());
}else if(message instanceof StreamMessage){
System.out.println("收到steam消息");
}
} else {
System.out.println("没有收到消息");
}
Thread.sleep(1 * 1000);
} catch (Exception e) {
e.printStackTrace();
}
}
附件是我在网上搜集的一些资料,以及自己的一些体会文档
分享到:
相关推荐
标题中的“activemq示例”指的是Apache ActiveMQ,一个流行的开源消息代理和队列中间件,用于在分布式系统中传递消息。ActiveMQ是Java消息服务(JMS)的实现,支持多种协议,如OpenWire、STOMP、AMQP、MQTT等,使得...
总的来说,ActiveMQ示例展示了如何在Java环境中利用消息中间件进行高效、可靠的通信。通过服务器端和客户端的交互,结合监听器机制,我们可以实现各种消息传递模式,提高系统的灵活性和可扩展性。理解和掌握ActiveMQ...
这个示例展示了 ActiveMQ 基本的使用流程,包括连接创建、消息发送和接收。在实际应用中,ActiveMQ 提供了丰富的特性和配置选项,如持久化、事务支持、集群、网络连接、多种协议支持等,能够满足复杂的企业级消息...
本教程旨在帮助activeMQ初学者入门,通过本示例,能完全理解activeMQ的基本概念,为分布式应用打下基础。 本示例中,使用maven管理,完美解决各种依赖问题,不需要自行配置,导入项目等待eclipse自行下载jar包后即可...
分别实现生产者-消费者模式和发布-订阅模式,作为java编程发送消息和消费消息的基础示例。 源码主要包含如下内容: 1.spring boot配置初始化activeMQ 2.队列类型queue,生产者发送队列消息,以及消费者消费相关队列...
标题 "SpringIntegrationMQ:spring 集成 - ActiveMQ 示例" 指向的是一个关于如何在Spring框架中集成ActiveMQ的示例项目。ActiveMQ是Apache出品的一款开源消息中间件,它允许应用程序通过消息传递进行异步通信,提高...
本示例代码提供了一个完整的Java项目,帮助开发者理解如何在实际应用中使用ActiveMQ。 在讲解ActiveMQ的基本概念和示例代码之前,我们先来了解下**JMS(Java Message Service)**。JMS是一种为应用程序提供创建、...
在ActiveMQ示例中,可能需要用到Gradle来管理项目的依赖和构建过程。 **集成JMS与ActiveMQ**: 1. 首先,确保在项目中添加了ActiveMQ客户端库。如果是Gradle项目,可以在`build.gradle`文件中添加如下依赖: ```...
`readme.txt`可能包含了一些关于如何使用这些代码示例的说明,包括如何配置ActiveMQ服务器地址、如何创建消息以及如何启动和停止producer和consumer。开发者应按照这些指南进行操作,以便了解ActiveMQ在实际项目中的...
三、ActiveMQ示例解析 `activemq-in-action-read-only`可能包含了一系列的示例代码和配置文件,这些示例涵盖了ActiveMQ的基本用法和高级特性,如: 1. 简单生产者与消费者:展示如何创建基本的生产者和消费者,...
SpringActiveMQ入门示例是关于如何在Java环境中利用Spring框架与Apache ActiveMQ集成的一个实践教程。这个示例主要适用于开发者想要了解如何在Spring应用中使用消息队列进行异步通信和解耦。在这个项目中,开发环境...
在这个名为 "activemq-samples" 的压缩包中,我们很可能会找到一系列示例代码,帮助开发者了解如何在实际项目中有效地使用 ActiveMQ。下面将详细介绍 ActiveMQ 及其在 Java 开发中的应用。 1. **Apache ActiveMQ ...
通过这个简单的 ActiveMQ 示例,你可以了解如何利用 JMS 接口在 Java 应用程序中使用 ActiveMQ 进行消息通信。这个例子将帮助你快速上手,并理解消息队列在分布式系统中的作用和价值。记住,深入学习 ActiveMQ 的...
压缩包中的 "ActiveMQ Demo" 可能包括了示例代码和指南,展示了如何创建和使用ActiveMQ。通常,它会涵盖以下步骤: 1. **配置连接**: 创建连接工厂以连接到ActiveMQ服务器。 2. **创建生产者**: 编写代码来创建消息...
**ActiveMQ 入门示例代码详解** ActiveMQ 是 Apache 开源组织开发的一款高效、可靠的开源消息中间件,它遵循 JMS(Java Message Service)规范,支持多种协议,如 AMQP、STOMP、OpenWire 等,广泛应用于分布式系统...
标题"memcached和activeMQ的JAVA示例代码"表明这是一个关于使用Java编程语言实现的,针对memcached缓存系统和activeMQ消息中间件的示例项目。这通常是为了帮助开发者理解如何在实际应用中整合这两种技术。 描述中的...
ActiveMQ是一种开源的,实现了JMS规范的,面向消息(MOM)的中间件,为应用程序提供高效的、可扩展的、稳定的和安全的企业级消息通信。 网盘地址:链接: https://pan.baidu.com/s/1nvOcn0l 密码: 4esh 话说怎么上传...
【标题】"activemq-demo.zip" 是一个包含Apache ActiveMQ示例的压缩包,它提供了关于如何使用和配置ActiveMQ的实例。 【描述】这个压缩包“activemq-demo.zip”显然包含了与Apache ActiveMQ相关的演示代码或配置...
`ActiveMQSpringDemo`项目是一个综合示例,包含了上述所有步骤。它创建了一个Spring Boot应用,配置了ActiveMQ连接,实现了消息的发送和接收。项目结构可能包括以下几个关键部分: - `src/main/resources/...