ActiveMQ学习笔记

1. Active简介

它是一种传输消息的中间件

2. Active安装以及问题总结

安装

这里选择的是在CentOs7.6上安装ActiveMQ的5.9的版本

  • 使用xftp将.gz文件上传到linux上
  • 解压压缩包到当前文件夹
    tar -zxf apache-activemq-5.9.0-bin.tar.gz
  • 进入bin目录中
    cd apache-activemq-5.9.0/bin/
  • 启动它(后面也可以跟 restart、status、stop)
    ./activemq start
问题总结

在bin目录下执行 ./activemq conaole 查看日志信息

  1. 在启动active时,启动失败,报错如下:
(you can configure options in one of these file: /etc/default/activemq /root/.activemqrc)

INFO: Invoke the following command to create a configuration file
/apache-activemq-5.10.2/bin/activemq setup [ /etc/default/activemq | /root/.activemqrc ]

INFO: Using java '/jdk/jdk1.8.0_161/bin/java'
INFO: Starting - inspect logfiles specified in logging.properties and log4j.properties to get details

INFO: pidfile created : '/apache-activemq-5.10.2/data/activemq-iZ2zefq9vbrnj5odlyp6g5Z.pid' (pid '16600')

解决办法:在bin目录中执行下面命令:
./activemq setup /etc/default/activemq

  1. 启动Active失败,报错如下:
ERROR | Failed to start Apache ActiveMQ 
([localhost, ID:CentOs7.6-35915-1642471492154-0:1], 
java.net.URISyntaxException: Illegal character in hostname at index 13: ws://CentOs7.6:61614?maximumConnections=1000&wireFormat.maxFrameSize=104857600)

主机名不合法

解决方法 : 进入与bin同级目录的conf目录中,修改配置文件
vim activemq.xml

        <transportConnectors>
            <transportConnector name="openwire" uri="tcp://0.0.0.0:61616?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="amqp" uri="amqp://localhost:5672?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="stomp" uri="stomp://localhost:61613?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="mqtt" uri="mqtt://localhost:1883?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="ws" uri="ws://localhost:61614?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
        </transportConnectors>

3. Active基本使用

pom文件中导入相关坐标

<dependency>
     <groupId>org.apache.activemq</groupId>
     <artifactId>activemq-all</artifactId>
     <version>5.9.0</version>
</dependency>
传输文本信息

生产者如下:

import org.apache.activemq.ActiveMQConnectionFactory;

import javax.jms.*;

public class Producer {

    public void sendMessageToActiveMQ(){
        //定义链接工厂
        ConnectionFactory connectionFactory = null;
        //定义链接对象
        Connection connection = null;
        //定义会话对象
        Session session = null;
        //定义目的地
        Destination destination = null;
        //定义消息发送者
        MessageProducer messageProducer = null;
        //定义消息对象
        Message message = null;

        try{
            //参数分别为:访问ActiveMQ服务的用户名、密码(可以通过jetty-ream.properties文件进行修改)、服务的路径地址(协议名://ip地址:端口)
            connectionFactory = new ActiveMQConnectionFactory("admin","admin","tcp://192.168.137.130:61616");
            //创建连接
            connection = connectionFactory.createConnection();
            //开启连接
            connection.start();
            //创建会话
            /**
             * 第一个参数: true|false  是否开启事务
             *       true:开启事务,第二个参数需设置为 Session.SESSION_TRANSACTED
             * 第二个参数:
             * Session.AUTO_ACKNOWLEDGE:自动确认机制
             * Session.CLIENT_ACKNOWLEDGE:客户端确认机制,需要手动确认
             * Session.DUPS_OK_ACKNOWLEDGE:有副本的客户端确认机制
             */
            session = connection.createSession(false,Session.AUTO_ACKNOWLEDGE);
            //创建目的地即队列
            destination = session.createQueue("queue1");
            //创建消息生产者
            messageProducer = session.createProducer(destination);
            //创建消息对象
            message = session.createTextMessage("Hello ActiveMQ");
            //发送消息
            messageProducer.send(message);
        }catch (Exception e){
            e.printStackTrace();
        }finally {
            if(messageProducer != null){
                try {
                    messageProducer.close();
                } catch (JMSException e) {
                    e.printStackTrace();
                }
            }
            if(session != null){
                try {
                    session.close();
                } catch (JMSException e) {
                    e.printStackTrace();
                }
            }
            if(connection != null){
                try {
                    connection.close();
                } catch (JMSException e) {
                    e.printStackTrace();
                }
            }
        }

    }

}

消费者如下:

import org.apache.activemq.ActiveMQConnectionFactory;

import javax.jms.*;

public class Consumer {

    public void receiveMessageFromActiveMQ(){
        //定义链接工厂
        ConnectionFactory connectionFactory = null;
        //定义链接对象
        Connection connection = null;
        //定义会话对象
        Session session = null;
        //定义目的地
        Destination destination = null;
        //定义消息接收者
        MessageConsumer messageConsumer = null;
        //定义消息对象
        Message message = null;

        try{
            //参数分别为:访问ActiveMQ服务的用户名、密码(可以通过jetty-ream.properties文件进行修改)、服务的路径地址(协议名://ip地址:端口)
            connectionFactory = new ActiveMQConnectionFactory("admin","admin","tcp://192.168.137.130:61616");
            //创建连接
            connection = connectionFactory.createConnection();
            //开启连接
            connection.start();
            //创建会话
            /**
             * 第一个参数: true|false  是否开启事务
             *       true:开启事务,第二个参数需设置为 Session.SESSION_TRANSACTED
             * 第二个参数:
             * Session.AUTO_ACKNOWLEDGE:自动确认机制
             * Session.CLIENT_ACKNOWLEDGE:客户端确认机制,需要手动确认
             * Session.DUPS_OK_ACKNOWLEDGE:有副本的客户端确认机制
             */
            session = connection.createSession(false,Session.AUTO_ACKNOWLEDGE);
            //指明监控的队列
            destination = session.createQueue("queue1");
            //创建消息消费者
            messageConsumer = session.createConsumer(destination);
            //拿到消息对象
            message = messageConsumer.receive();

            System.out.println("消息为:" + ((TextMessage)message).getText());

        }catch (Exception e){
            e.printStackTrace();
        }finally {
            if(messageConsumer != null){
                try {
                    messageConsumer.close();
                } catch (JMSException e) {
                    e.printStackTrace();
                }
            }
            if(session != null){
                try {
                    session.close();
                } catch (JMSException e) {
                    e.printStackTrace();
                }
            }
            if(connection != null){
                try {
                    connection.close();
                } catch (JMSException e) {
                    e.printStackTrace();
                }
            }
        }

    }

}

传输对象消息

生产者如下:

  • 只需修改上面的相关代码
  • 对象必须实现序列化接口
  • 这里传输的是User对象
//创建消息对象
//message = session.createTextMessage("Hello ActiveMQ");
  message = session.createObjectMessage(new User(15,"111"));

消费者如下:

  • 修改上面消费者的相关代码
message = messageConsumer.receive();
//System.out.println("消息为:" + ((TextMessage)message).getText());
ObjectMessage objectMessage = (ObjectMessage) message;
User user = (User) objectMessage.getObject();
System.out.println(user);
实现队列服务监听处理消息

在上面消费者的代码中去掉获取消息以及打印消息的部分,添加如下代码

messageConsumer.setMessageListener(new MessageListener() {
             public void onMessage(Message message) {
                try {
                    //里面就是在处理消息,这里处理的是对象消息
                     ObjectMessage objectMessage = (ObjectMessage) message;
                     User user = (User) objectMessage.getObject();
                     System.out.println(user);
                    } catch (JMSException e) {
                        e.printStackTrace();
                    }
                }
            });

注意去掉finally,因为监听的时候,会话对象,连接对象必须存在,不能关闭掉

使用Topic模型
//将生产者以及消费者中的代码修改为最后一句
//destination = session.createQueue("queue1");
destination = session.createTopic("topic1");

这样就可以让多个消费者监视一个topic了

SpringBoot整合ActiveMQ

1.导入坐标依赖

<!--Active启动器-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-activemq</artifactId>
</dependency>
<!--消息队列连接池-->
<dependency>
    <groupId>org.apache.activemq</groupId>
    <artifactId>activemq-pool</artifactId>
    <version>5.15.0</version>
</dependency>

2.配置如下

#ActiveMQ服务地址
spring.activemq.broker-url=tcp://192.168.137.130:61616
#true表示使用内置的MQ,false则连接服务器
spring.activemq.in-memory=false
#true表示使用连接池;false时,每发送一条数据创建一个连接
spring.activemq.pool.enabled=true
#连接池最大连接数
spring.activemq.pool.max-connections=10
#空闲的连接过期时间,默认为30秒
spring.activemq.pool.idle-timeout=30000
#强制的连接过期时间
spring.activemq.pool.expiry-timeout=0

3.在启动类上添加@EnableJms注解开启消息队列

4.配置队列:

import javax.jms.Queue;
import org.apache.activemq.command.ActiveMQQueue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class ActiveMQConfig {
    //定义存放消息的队列
    @Bean
    public Queue queue() {
        return new ActiveMQQueue("Queue111");
    }
}

5.生产者如下:

import javax.jms.Queue;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jms.core.JmsMessagingTemplate;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.Controller;
 
@Controller
public class ProviderController {
 
    //注入之前配置的队列队列
    @Autowired
    private Queue queue;
 
    //注入springboot封装的工具类
    @Autowired
    private JmsMessagingTemplate template;
 
    @RequestMapping("test")
    public void sendMessage() {
        //方法一:添加消息到消息队列
        template.convertAndSend(queue, "Hello ActiveMQ");
        //方法二:这种方式不需要手动创建queue,系统会自行创建名为test的队列
        //template.convertAndSend("test", "Hello ActiveMQ");
    }
}

6.消费者如下:

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jms.annotation.JmsListener;
import org.springframework.jms.core.JmsMessagingTemplate;
import org.springframework.stereotype.Component;
 
@Component
public class ConsumerService {
 
    @Autowired
    private JmsMessagingTemplate jmsMessagingTemplate;
 
    // 使用JmsListener配置消费者监听的队列
    @JmsListener(destination = "Queue111")
    public void handleMessage(String msg) {
        System.out.println("消息为:" + msg);
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

影佑佑

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值