博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
跟踪mqttv3源码(一)
阅读量:5086 次
发布时间:2019-06-13

本文共 2013 字,大约阅读时间需要 6 分钟。

Spring整合MQTT

pom.xml

org.eclipse.paho
org.eclipse.paho.client.mqttv3
1.0.2
com.google.code.gson
gson
2.8.1
org.springframework.integration
spring-integration-mqtt
4.3.5.RELEASE
org.eclipse.paho
mqtt-client
org.springframework
spring-messaging
org.fusesource.mqtt-client
mqtt-client
1.14

 

spring-mqtt.xml

实现消息处理类

public class MqttService2{    private static final Logger log = LoggerFactory.getLogger(MqttService2.class);    private MqttPahoMessageHandler mqtt;    private volatile Integer serialno = 0;        public void startCase(Message
recmsg){ //mqtt5.0// String topic = (String) recmsg.getHeaders().get("mqtt_receivedTopic"); String topic = (String) recmsg.getHeaders().get("mqtt_topic"); String payload = recmsg.getPayload(); log.info("消息解析headers结果:{},{}", topic, payload); }}

startCase()方法中的参数目前我知道的有三种:

转载于:https://www.cnblogs.com/wangwanchao/p/7516733.html

你可能感兴趣的文章
Windows10 下Apache服务器搭建
查看>>
HDU 5458 Stability
查看>>
左手坐标系和右手坐标系
查看>>
solr后台操作Documents之增删改查
查看>>
http://yusi123.com/
查看>>
文件文本的操作
查看>>
Ubuntu linux下gcc版本切换
查看>>
记一次Web服务的性能调优
查看>>
jQuery.form.js使用
查看>>
(转)linux sort,uniq,cut,wc命令详解
查看>>
关于ExecuteNonQuery执行的返回值(SQL语句、存储过程)
查看>>
UVa540 Team Queue(队列queue)
查看>>
mysql数据增删改查
查看>>
akka之种子节点
查看>>
不知道做什么时
查看>>
matlab 给某一列乘上一个系数
查看>>
密码学笔记——培根密码
查看>>
Screening technology proved cost effective deal
查看>>
MAC 上升级python为最新版本
查看>>
创业老板不能犯的十种错误
查看>>