RabbitMQ开启MQTT协议支持

1)RabbitMQ启用MQTT插件

sh 复制代码
root@mq:/# rabbitmq-plugins enable rabbitmq_mqtt
Enabling plugins on node rabbit@mq:
rabbitmq_mqtt
The following plugins have been configured:
  rabbitmq_management
  rabbitmq_management_agent
  rabbitmq_mqtt
  rabbitmq_web_dispatch
Applying plugin configuration to rabbit@mq...
The following plugins have been enabled:
  rabbitmq_mqtt

started 1 plugins.
root@mq:/# rabbitmq-plugins enable rabbitmq_web_mqtt
Enabling plugins on node rabbit@mq:
rabbitmq_web_mqtt
The following plugins have been configured:
  rabbitmq_management
  rabbitmq_management_agent
  rabbitmq_mqtt
  rabbitmq_web_dispatch
  rabbitmq_web_mqtt
Applying plugin configuration to rabbit@mq...
The following plugins have been enabled:
  rabbitmq_web_mqtt

started 1 plugins.
root@mq:/# 

2)RabbitMQ管理控制台查看

如果插件启动成功,rabbitmq会打开1883和15675端口:

3)用MQTTX工具测试

4)用eclipse paho客户端测试

添加依赖

xml 复制代码
 <dependency>
    <groupId>org.eclipse.paho</groupId>
    <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
    <version>1.2.5</version>
</dependency>

收发消息测试

java 复制代码
@RestController
public class DemoController {

    @GetMapping("/publish")
    public String publish() throws MqttException {

        MqttClientPersistence persistence = new MemoryPersistence();;//内存持久化
        MqttClient client = new MqttClient("tcp://192.168.137.138:1883", "abc", persistence);

        //连接选项中定义用户名密码和其它配置
        MqttConnectOptions options = new MqttConnectOptions();
        options.setCleanSession(true);//参数为true表示清除缓存,也就是非持久化订阅者,这个时候只要参数设为true,一定是非持久化订阅者。而参数设为false时,表示服务器保留客户端的连接记录
        options.setAutomaticReconnect(true);//是否自动重连
        options.setConnectionTimeout(30);//连接超时时间  秒
        options.setKeepAliveInterval(10);//连接保持检查周期  秒
        options.setMqttVersion(MqttConnectOptions.MQTT_VERSION_3_1_1); //版本
        options.setUserName("xjs1919");
        options.setPassword("123321".toCharArray());
        // client.setManualAcks(true);
        client.connect(options);//连接
        //订阅topic
        client.subscribe("demoTopic", 2);
        // 设置回调,将来收到消息的时候会被回调
        client.setCallback(new MqttCallbackExtended() {
            @Override
            public void connectComplete(boolean reconnect, String serverURI) {
                System.out.println("连接完成");
            }

            @Override
            public void connectionLost(Throwable cause) {
                System.out.println("连接丢失");
            }

            @Override
            public void messageArrived(String topic, MqttMessage message) throws Exception {
                System.out.println("收到消息,topic:"+topic + ", msg:" + new String(message.getPayload()));
                //client.messageArrivedComplete(message.getId(),message.getQos());
            }

            @Override
            public void deliveryComplete(IMqttDeliveryToken token) {
                // Qos0: 当消息发送出去就回调
                // Qos1: 当发送者收到了puback的时候的回调
                // Qos2: 当发送者收到了pubcomp的时候的回调
                System.out.println("消息发送完成");
            }
        });

        client.publish("demoTopic", "hello,这是一个测试消息!".getBytes(), 2, false);

        return "ok";
    }

}

参考文章:
https://www.cnblogs.com/motion/p/14974024.html
https://blog.csdn.net/u013615903/article/details/131395264

相关推荐
starzy19907 小时前
SparkSQL 数据源与底层架构深度剖析
大数据·分布式·架构·spark
番茄炒鸡蛋加糖8 小时前
RabbitMQ 全套复盘 + Nacos+ES+MyBatis-Plus 梳理
分布式·rabbitmq
零域码客15 小时前
从 SQLite 到 PostgreSQL:轻量单机到分布式架构选型、避坑与迁移全解析
分布式·postgresql·sqlite·wal·架构设计·后端开发·数据库选型
ltl1 天前
2PC 的真实失败模式:阻塞、脑裂与恢复
分布式
霸道流氓气质1 天前
分布式系统设计:技术解析与实践
分布式
ACP广源盛139246256731 天前
蚂蚁百灵 Ling‑3.0‑flash 开源 + 昇腾 0‑Day 原生适配@ACP#GSV9001E 在国产算力矩阵中的机会与落地场景
大数据·人工智能·分布式·单片机·嵌入式硬件
汽车仪器仪表相关领域1 天前
KRYPTON坚固型IP67 EtherCAT总线数据采集模块:工业级分布式采集方案
分布式·功能测试·汽车·压力测试·可用性测试
霸道流氓气质1 天前
Java中信号量(Semaphore):从本地到分布式
java·开发语言·分布式
naierfengdian2 天前
分布式风电助力乡村能源转型的技术路径
分布式·能源
霸道流氓气质2 天前
RedLock:Redis 分布式锁的高可用方案
数据库·redis·分布式