下载以及安装和启动之前和Spring Boot集成有文章介绍。这里单独使用ActiveMQ
下载后会有一个jar,后续将jar放入项目
然后创建一个项目,简单使用下ActiveMQ
代码:
package www.ypp.activemq;
import javax.jms.Connection;
import javax.jms.ConnectionFactory;
import javax.jms.Destination;
import javax.jms.JMSException;
import javax.jms.MessageProducer;
import javax.jms.Session;
import javax.jms.TextMessage;
import org.apache.activemq.ActiveMQConnection;
import org.apache.activemq.ActiveMQConnectionFactory;
public class ActiveMQProducer {
private static final String USERNAME=ActiveMQConnection.DEFAULT_USER; // 默认的连接用户名
private static final String PASSWORD=ActiveMQConnection.DEFAULT_PASSWORD; // 默认的连接密码
private static final String BROKEURL=ActiveMQConnection.DEFAULT_BROKER_URL; // 默认的连接地址
public static void main(String[] args) {
ConnectionFactory connectionFactory; // 连接工厂
Connection connection = null; // 连接
Session session; // 会话 接受或者发送消息的线程
Destination destination; // 消息的目的地
MessageProducer messageProducer; // 消息生产者
//实例化连接工厂
connectionFactory = new ActiveMQConnectionFactory(ActiveMQProducer.USERNAME, ActiveMQProducer.PASSWORD, ActiveMQProducer.BROKEURL);
//获取连接
try {
connection=connectionFactory.createConnection();
connection.start();//启动连接
//创建session 添加事务true
session=connection.createSession(Boolean.TRUE,Session.AUTO_ACKNOWLEDGE);
destination=session.createQueue("FIRSTQUEUE01");//创建消息队列
messageProducer=session.createProducer(destination);//创建消息生产者
//发送20条消息
sendMessage(session, messageProducer);
session.commit();
} catch (Exception e) {
e.printStackTrace();
}finally {
//释放连接
if(connection!=null){
try {
connection.close();
} catch (JMSException e) {
e.printStackTrace();
}
}
}
}
public static void sendMessage(Session session,MessageProducer messageProducer) throws Exception{
for (int i = 0; i < 20; i++) {
TextMessage textMessage = session.createTextMessage("ActiveMQ发送消息+"+i);
System.out.println(textMessage.getText());
messageProducer.send(textMessage);
}
}
}
在运行代码之前,先看一下ActiveMQ的消息
目前一条消息没有。运行上面代码再看:
消息已经发送了,tcp://localhost:61616这个是DEFAULT_BROKER_URL.DEFAULT_BROKER_URL的连接地址
已经有20条消息了,目前还没有消费者,也还没有消费
创建消费者(监听方式)
ActiveMQConsumer:
package www.ypp.activemq;
import javax.jms.Connection;
import javax.jms.ConnectionFactory;
import javax.jms.Destination;
import javax.jms.JMSException;
import javax.jms.MessageConsumer;
import javax.jms.Session;
import javax.jms.TextMessage;
import org.apache.activemq.ActiveMQConnection;
import org.apache.activemq.ActiveMQConnectionFactory;
public class ActiveMQConsumer {
private static final String USERNAME=ActiveMQConnection.DEFAULT_USER; // 默认的连接用户名
private static final String PASSWORD=ActiveMQConnection.DEFAULT_PASSWORD; // 默认的连接密码
private static final String BROKEURL=ActiveMQConnection.DEFAULT_BROKER_URL; // 默认的连接地址
public static void main(String[] args) {
ConnectionFactory connectionFactory; // 连接工厂
Connection connection = null; // 连接
Session session; // 会话 接受或者发送消息的线程
Destination destination; // 消息的目的地
MessageConsumer messageConsumer; // 消息的消费者
// 实例化连接工厂
connectionFactory=new ActiveMQConnectionFactory(ActiveMQConsumer.USERNAME, ActiveMQConsumer.PASSWORD, ActiveMQConsumer.BROKEURL);
try {
connection=connectionFactory.createConnection(); // 通过连接工厂获取连接
connection.start(); // 启动连接
session=connection.createSession(Boolean.FALSE, Session.AUTO_ACKNOWLEDGE); // 创建Session
destination=session.createQueue("FirstQueue1"); // 创建连接的消息队列
messageConsumer=session.createConsumer(destination); // 创建消息消费者
while(true){
TextMessage textMessage=(TextMessage)messageConsumer.receive(100000);
if(textMessage!=null){
System.out.println("收到的消息:"+textMessage.getText());
}else{
break;
}
//messageConsumer.setMessageListener(new ConsumerListener());
}
} catch (JMSException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
ConsumerListener:
package www.ypp.activemq;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageListener;
import javax.jms.TextMessage;
public class ConsumerListener implements MessageListener{
@Override
public void onMessage(Message message) {
try {
System.out.println("收到的消息:"+((TextMessage)message).getText());
} catch (JMSException e) {
e.printStackTrace();
}
}
}
运行ActiveMQConsumer:
消息已被处理
以上是Queue方式
还有一种topic订阅方式,区别只是创建的方式不一样
destination=session.createQueue("FirstQueue1");改为destination=session.createTopic("FirstQueue1");
还有一点区别是,必须是先订阅,再发布,不然无法收到消息
源码以及相关资料地址:https://pan.baidu.com/s/1jteES9POV4piRneLL4hD4w 提取码:qug6