赞
踩
MQTT(消息队列遥测传输)是ISO 标准(ISO/IEC PRF 20922)下基于发布/订阅范式的消息协议。
它工作在TCP/IP协议族上,是为硬件性能低下的远程设备以及网络状况糟糕的情况下而设计的发布/订阅型消息协议,为此,它需要一个消息中间件。
实现MQTT协议需要客户端和服务器端通讯完成。
在通讯过程中,MQTT协议中有三种身份:发布者(Publish)、代理(Broker)(服务器)、订阅者(Subscribe)。
其中,消息的发布者和订阅者都是客户端,消息代理是服务器,消息发布者可以同时是订阅者。
MQTT传输的消息分为:主题(Topic)和负载(payload)两部分:
(1)Topic,可以理解为消息的类型,订阅者订阅(Subscribe)后,就会收到该主题的消息内容(payload);
(2)payload,可以理解为消息的内容,是指订阅者具体要使用的内容。
订阅包含主题筛选器(Topic Filter)和最大服务质量(QoS)。订阅会与一个会话(Session)关联。一个会话可以包含多个订阅。每一个会话中的每个订阅都有一个不同的主题筛选器。
消息发布质量(Qos):
qos=0:“至多一次”,这一级别会发生消息丢失或重复,消息发布依赖于TCP/IP网络
qos=1:“至少一次”,确保消息到达,但消息重复可能会发生
qos=2:“只有一次”,确保消息到达一次
订阅普通主题。例如:订阅 hello 主题。
订阅通配符主题。例如:订阅通配符主题 testtopic/#,并给 testtopic/1 主题发送消息,会接收到该消息。
每个客户端与服务器建立连接后就是一个会话,客户端和服务器之间有状态交互。会话存在于一个网络之间,也可能在客户端和服务器之间跨越多个连续的网络连接。
连接到一个应用程序消息的标签,该标签与服务器的订阅相匹配。服务器会将消息发送给订阅所匹配标签的每个客户端。
一个对主题名通配符筛选器,在订阅表达式中使用,表示订阅所匹配到的多个主题。
参考:MQTT 主题与主题过滤_amwha的博客-CSDN博客
消息订阅者所具体接收的内容。
包含CONNECT、SUBSCRIBE、SUBACK、UNSUBSCRIBE四种类型的消息:
(1)CONNECT,消息体内容主要是:客户端的ClientID、订阅的Topic、Message以及用户名和密码。
(2)SUBSCRIBE,消息体内容是一系列的要订阅的主题以及QoS。
(3)SUBACK,消息体内容是服务器对于SUBSCRIBE所申请的主题及QoS进行确认和回复。
(4)UNSUBSCRIBE,消息体内容是要订阅的主题。
也称为 MQTT 消息服务器,它可以是运行了 MQTT 消息服务器软件的一台服务器或一个服务器集群。MQTT Broker 负责接收来自客户端的网络连接,并处理客户端的订阅/取消订阅(Subscribe/Unsubscribe)、消息发布(Publish)请求,同时也会将客户端发布的消息转发给其他订阅者。
1、基本需求
1)支持 mqtt3.1 / mqtt3.1.1协议(可选 mqtt5.0)
3.1和3.1.1是最常见的协议版本,几乎目前生产的IoT设备都支持,所以Broker也必须支持。至于5.0版本,目前各大Broker都在努力支持,不过还需要一些时间才会普及。
2)支持QoS0、QoS1(可选QoS2)
各大厂商都至少支持了QoS1,保证消息到达。一般的场景下不会用到QoS2,所以可以选择性地考虑支持QoS2
3)支持遗嘱消息
这是必须支持的功能,通常设备断开都不是主动断开的,而是没有电了才断开,属于异常断开,需要设置遗嘱消息来通知后端服务或者其他设备进行后续处理。
4)支持持久化
一些数据如QoS1消息、持久Session,需要支持持久化,这是MQTT协议规定的。
5)支持多种连接方式
MQTT over TCP:最基础的连接方式
MQTT over Websocket:在Websocket之上做MQTT封装,对APP这种客户端来说很友好
MQTT over TCP/SSL:基础连接方式做通信加密,通常SSL采用TLS
MQTT over Websocket/SSL:Websocket做通信加密,通常SSL采用TLS
6)保留消息(可选)
保留消息的利用场景几乎可以忽略,而带来的查询成本会很高(每次订阅主题都要查一遍有没有保留消息,再加上通配符匹配,时延很高),所以不一定需要支持,具体应用具体分析。
7)支持集群
Broker要支持保持海量MQTT连接,需要做集群。集群的难点在于Session的持久化和集群通信。
8)支持自定义验证方式
验证客户端的合法性有三点:CONNECT阶段验证是否允许连接、PUBLISH阶段验证是否允许发布、SUBSCRIBE阶段验证是否允许订阅。
CONNECT阶段需要验证ClientID、Username、Password、IP四项,不过大部分开源Broker都只支持Username和Password的验证。
PUBLISH、SUBSCRIBE的验证的目的是防止非法客户端订阅别人的主题,向别人的主题发布消息。但每台设备每次订阅、发布都要验证一次频率巨高,所以需要设计Cache和高效查询机制。
2、高级功能:支持共享订阅
共享订阅的具体含义是,多个客户端订阅同一个主题,消息只会被分发给其中的一个客户端。
共享订阅主要针对的是需要客户端负载均衡的场景,比如后端服务多个Worker,需要共享订阅来只让一个Worker得到数据。但仔细地想一想,后端服务一定有大量消息扇入,在Broker端用共享订阅可能会导致内存爆炸,还不如直接发到Kafka,利用Kafka的负载均衡来做。不过现在的Broker都在逐渐支持共享订阅,所以也是一个趋势吧。
org.eclipse.paho.client.mqttv3.jar
下载地址:Index of /repositories/paho-releases/org/eclipse/paho/org.eclipse.paho.client.mqttv3
- <dependency>
- <groupId>org.eclipse.paho</groupId>
- <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
- <version>1.2.2</version>
- </dependency>
- import org.eclipse.paho.client.mqttv3.*;
- import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;
-
-
- /**
- * 创建一个MQTT客户端
- *
- */
- @Slf4j
- public class MqttPushClient {
-
- public static String MQTT_HOST = "";
- public static String MQTT_CLIENTID = "";
- public static String MQTT_USERNAME = "";
- public static String MQTT_PASSWORD = "";
- public static int MQTT_TIMEOUT = 10;
- public static int MQTT_KEEPALIVE = 10;
-
- private MqttClient client;
- private static volatile MqttPushClient mqttClient = null;
-
- public static MqttPushClient getInstance() {
- if (mqttClient == null) {
- synchronized (MqttPushClient.class) {
- if (mqttClient == null) {
- mqttClient = new MqttPushClient();
- }
- }
- }
- return mqttClient;
- }
-
- private MqttPushClient() {
- log.info("Connect MQTT: " + this);
- connect();
- }
-
- /**
- * 创建连接
- */
- private void connect() {
- try {
- client = new MqttClient(MQTT_HOST, MQTT_CLIENTID, new MemoryPersistence());
- MqttConnectOptions option = new MqttConnectOptions();
- option.setCleanSession(true);//设置是否清空session,false表示服务器会保留客户端的连接记录,true表示每次连接到服务器都以新的身份连接
- option.setUserName(MQTT_USERNAME);//设置连接的用户名
- option.setPassword(MQTT_PASSWORD.toCharArray());//设置连接的密码
- option.setConnectionTimeout(MQTT_TIMEOUT);// 设置超时时间
- option.setKeepAliveInterval(MQTT_KEEPALIVE);// 设置会话心跳时间
- option.setAutomaticReconnect(true);// 自动重连
- try {
- client.setCallback(new MqttPushCallback());
- client.connect(option);
- } catch (Exception e) {
- e.printStackTrace();
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
-
- /**
- * 发布主题,用于通知<br>
- * 默认qos为1 非持久化
- *
- * @param topic
- * @param data
- */
- public void publish(String topic, String data) {
- publish(topic, data, 1, false);
- }
-
- /**
- * 发布
- *
- * @param topic
- * @param data
- * @param qos
- * @param retained
- */
- public void publish(String topic, String data, int qos, boolean retained) {
- MqttMessage message = new MqttMessage();
- message.setQos(qos);//设置qos,决定消息到达次数。
- message.setRetained(retained);// 服务器是否保存消息
- message.setPayload(data.getBytes());//设置消息内容
- MqttTopic mqttTopic = client.getTopic(topic);// 设置消息主题
- if (null == mqttTopic) {
- log.error("Topic Not Exist");
- }
- MqttDeliveryToken token;
- try {
- token = mqttTopic.publish(message);
- token.waitForCompletion();
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
-
- /**
- * 订阅某个主题 qos默认为1
- *
- * @param topic
- */
- public void subscribe(String topic) {
- subscribe(topic, 1);
- }
-
- /**
- * 订阅某个主题
- *
- * @param topic
- * @param qos
- */
- public void subscribe(String topic, int qos) {
- try {
- client.subscribe(topic, qos);
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- }
- import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken;
- import org.eclipse.paho.client.mqttv3.MqttCallback;
- import org.eclipse.paho.client.mqttv3.MqttMessage;
-
-
- /**
- * MQTT 推送回调
- */
- public class MqttPushCallback implements MqttCallback {
-
- private static final Logger log = LoggerFactory.getLogger(MqttPushCallback.class);
-
- //连接断开时的回调
- @Override
- public void connectionLost(Throwable cause) {
- log.info("断开连接,建议重连" + this);
- //断开连接,建议重连
- }
-
- //消息发送成功时的回调
- @Override
- public void deliveryComplete(IMqttDeliveryToken token) {
- //log.info(token.isComplete() + "");
- }
-
- //收到下推消息时的回调
- @Override
- public void messageArrived(String topic, MqttMessage message) throws Exception {
- log.info("Topic: " + topic);
- log.info("Message: " + new String(message.getPayload()));
- }
- }
- <dependency>
- <groupId>org.springframework.integration</groupId>
- <artifactId>spring-integration-stream</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.integration</groupId>
- <artifactId>spring-integration-mqtt</artifactId>
- </dependency>
- #MQTT配置信息
- #MQTT-用户名
- spring.mqtt.username=xxxx
- #MQTT-密码
- spring.mqtt.password=xxxx
- #MQTT-服务器连接地址
- spring.mqtt.url=tcp://xxx.xxx.xxx:18831
- #MQTT-连接服务器默认客户端ID
- spring.mqtt.client.id=xxxxxx
- #MQTT-默认的消息推送主题,实际可在调用接口时指定
- spring.mqtt.default.topic=/public/TEST/#
- #连接超时
- spring.mqtt.completionTimeout=3000
- import lombok.extern.slf4j.Slf4j;
- import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.integration.annotation.IntegrationComponentScan;
- import org.springframework.integration.annotation.ServiceActivator;
- import org.springframework.integration.channel.DirectChannel;
- import org.springframework.integration.core.MessageProducer;
- import org.springframework.integration.mqtt.core.DefaultMqttPahoClientFactory;
- import org.springframework.integration.mqtt.core.MqttPahoClientFactory;
- import org.springframework.integration.mqtt.inbound.MqttPahoMessageDrivenChannelAdapter;
- import org.springframework.integration.mqtt.support.DefaultPahoMessageConverter;
- import org.springframework.messaging.Message;
- import org.springframework.messaging.MessageChannel;
- import org.springframework.messaging.MessageHandler;
- import org.springframework.messaging.MessagingException;
-
- import java.text.SimpleDateFormat;
-
- //接收配置类
- @Configuration
- @IntegrationComponentScan
- @Slf4j
- public class MqttReceiveConfig {
-
- @Value("${spring.mqtt.username}")
- private String username;
-
- @Value("${spring.mqtt.password}")
- private String password;
-
- @Value("${spring.mqtt.url}")
- private String hostUrl;
-
- @Value("${spring.mqtt.client.id}")
- private String clientId;
-
- @Value("${spring.mqtt.default.topic}")
- private String defaultTopic;
-
- @Value("${spring.mqtt.completionTimeout}")
- private int completionTimeout; //连接超时
-
-
- SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss zzz");
-
- @Bean
- public MqttConnectOptions getMqttConnectOptions() {
- // MQTT的连接设置
- MqttConnectOptions mqttConnectOptions = new MqttConnectOptions();
- // 设置连接的用户名
- mqttConnectOptions.setUserName(username);
- // 设置连接的密码
- mqttConnectOptions.setPassword(password.toCharArray());
- // 设置是否清空session,这里如果设置为false表示服务器会保留客户端的连接记录,
- // 把配置里的 cleanSession 设为false,客户端掉线后 服务器端不会清除session,
- // 当重连后可以接收之前订阅主题的消息。当客户端上线后会接受到它离线的这段时间的消息
- mqttConnectOptions.setCleanSession(false);
- // 设置发布端地址
- mqttConnectOptions.setServerURIs(new String[]{hostUrl});
- // 设置会话心跳时间 单位为秒 服务器会每隔1.5*20秒的时间向客户端发送个消息判断客户端是否在线,但这个方法并没有重连的机制
- mqttConnectOptions.setKeepAliveInterval(20);
- return mqttConnectOptions;
- }
-
- @Bean
- public MqttPahoClientFactory mqttClientFactory() {
- // 客户端工厂类,根据配置的选项(用户名、密码、服务器集群地址等)创建一个默认的客户端。
- DefaultMqttPahoClientFactory factory = new DefaultMqttPahoClientFactory();
- factory.setConnectionOptions(getMqttConnectOptions());
- return factory;
- }
-
- //接收通道
- @Bean
- public MessageChannel mqttInputChannel() {
- return new DirectChannel();
- }
-
- //配置监听的topic
- @Bean
- public MessageProducer inbound() {
- String[] defaultTopics= defaultTopic.split(",");
- MqttPahoMessageDrivenChannelAdapter adapter =
- new MqttPahoMessageDrivenChannelAdapter(clientId + "_inbound",
- mqttClientFactory(), defaultTopics);
- adapter.setCompletionTimeout(completionTimeout);
- adapter.setConverter(new DefaultPahoMessageConverter());
- adapter.setQos(1);
- adapter.setOutputChannel(mqttInputChannel());
- return adapter;
- }
-
- //通过通道获取数据
- @Bean
- @ServiceActivator(inputChannel = "mqttInputChannel")
- public MessageHandler handler() {
- return new MessageHandler() {
- @Override
- public void handleMessage(Message<?> message) throws MessagingException {
- String topic = message.getHeaders().get("mqtt_receivedTopic").toString();
- System.out.println("Topic: " + topic);
- System.out.println("Message: " + topic);
- }
- };
- }
- }
- import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.integration.annotation.IntegrationComponentScan;
- import org.springframework.integration.annotation.ServiceActivator;
- import org.springframework.integration.channel.DirectChannel;
- import org.springframework.integration.mqtt.core.DefaultMqttPahoClientFactory;
- import org.springframework.integration.mqtt.core.MqttPahoClientFactory;
- import org.springframework.integration.mqtt.outbound.MqttPahoMessageHandler;
- import org.springframework.messaging.MessageChannel;
- import org.springframework.messaging.MessageHandler;
-
-
- //MQTT消息推送配置类
- @Configuration
- @IntegrationComponentScan
- public class MqttSenderConfig {
-
- @Value("${spring.mqtt.username}")
- private String username;
-
- @Value("${spring.mqtt.password}")
- private String password;
-
- @Value("${spring.mqtt.url}")
- private String hostUrl;
-
- @Value("${spring.mqtt.client.id}")
- private String clientId;
-
- @Value("${spring.mqtt.default.topic}")
- private String defaultTopic;
-
- @Bean
- public MqttConnectOptions getMqttConnectOptions() {
- MqttConnectOptions mqttConnectOptions = new MqttConnectOptions();
- mqttConnectOptions.setUserName(username);
- mqttConnectOptions.setPassword(password.toCharArray());
- mqttConnectOptions.setServerURIs(new String[]{hostUrl});
- mqttConnectOptions.setKeepAliveInterval(2);
- return mqttConnectOptions;
- }
-
- @Bean
- public MqttPahoClientFactory mqttClientFactory() {
- DefaultMqttPahoClientFactory factory = new DefaultMqttPahoClientFactory();
- factory.setConnectionOptions(getMqttConnectOptions());
- return factory;
- }
-
- // 消息推送客户端
- @Bean
- @ServiceActivator(inputChannel = "mqttOutboundChannel")
- public MessageHandler mqttOutbound() {
- // MQTT出站通道适配器的抽象类的实现,用于推送消息。
- MqttPahoMessageHandler messageHandler = new MqttPahoMessageHandler(clientId, mqttClientFactory());
- messageHandler.setAsync(true);
- messageHandler.setDefaultTopic(defaultTopic);
- return messageHandler;
- }
-
- // 消息推送通道
- @Bean
- public MessageChannel mqttOutboundChannel() {
- return new DirectChannel();
- }
- }
- import org.springframework.integration.annotation.MessagingGateway;
- import org.springframework.integration.mqtt.support.MqttHeaders;
- import org.springframework.messaging.handler.annotation.Header;
-
-
- @Component
- @MessagingGateway(defaultRequestChannel = "mqttOutboundChannel")
- public interface MqttSenderService {
- /**
- * 消息推送
- *
- * @param data 发送的消息内容
- * @param topic 主题
- */
- void sendToMqtt(String data, @Header(MqttHeaders.TOPIC) String topic);
- /**
- * 消息推送
- *
- * @param data 发送的消息内容
- * @param topic 主题
- * @param qos 消息服务质量
- */
- void sendToMqtt(String data, @Header(MqttHeaders.TOPIC) String topic, @Header(MqttHeaders.QOS) int qos);
- }
- @Autowired
- private MqttSenderService mqttSenderService;
-
- mqttSenderService.sendToMqtt("121212121210099", "/public/TEST/windows");
mqtt客户端频繁中断:Lost connection: 已断开连接; retry
问题原因:
原因1:造成这种情况的原因是ClientId相同。2个服务端使用相同的ClientId连接mqtt服务器。
解决方案:让消费端的ClientId为随机字符串。这样ClientId就不会重复。
原因2:在回调函数内进行业务处理遇到异常并没有捕获
解决方案:在可能出现异常的语句块,进行try-catch捕获
Mosquito CLI
MQTTX
MQTT.fx
MQTT Box
mqtt-spy
MQTT Lens
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。