From d5d1bf966f3b5b98e13ea616c479ba23a63f382d Mon Sep 17 00:00:00 2001 From: xiwa Date: Tue, 8 Aug 2023 11:00:44 +0000 Subject: [PATCH 1/2] update README.md. Signed-off-by: xiwa --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index d9b66edf..2e511c2e 100755 --- a/README.md +++ b/README.md @@ -200,6 +200,11 @@ http://iotkit-open-source.gitee.io/document/ ![输入图片说明](doc/ma.png) +#### 开源生态 + +1. [mybatis-plus版数据服务](https://gitee.com/openiot/iotkit-parent-mybatis)(直接替换iot-data-serviceImpl-rdb就能从jpa切换成mybatis-plus) + + ### 项目规划 见:《[开源项目管理](https://open-iita.feishu.cn/base/G4owbWqkbaoI0LsYVnWcreXVnnc)》 From 0e1dd0ebad885455cc86dedb650034d7cebb7c2a Mon Sep 17 00:00:00 2001 From: jay <75509151@qq.com> Date: Wed, 9 Aug 2023 10:20:23 +0800 Subject: [PATCH 2/2] =?UTF-8?q?update:=20nb=E7=BB=84=E4=BB=B6=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E4=B8=8A=20qos=3D0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/cc/iotkit/comp/nb/NBVerticle.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iot-components/iot-nb-component/src/main/java/cc/iotkit/comp/nb/NBVerticle.java b/iot-components/iot-nb-component/src/main/java/cc/iotkit/comp/nb/NBVerticle.java index f3523f42..6f025c31 100644 --- a/iot-components/iot-nb-component/src/main/java/cc/iotkit/comp/nb/NBVerticle.java +++ b/iot-components/iot-nb-component/src/main/java/cc/iotkit/comp/nb/NBVerticle.java @@ -215,7 +215,7 @@ public class NBVerticle extends AbstractVerticle { throw new BizException(ErrCode.SEND_DESTINATION_NOT_FOUND); } Future result = endpoint.publish(topic, msg, - MqttQoS.AT_LEAST_ONCE, false, false); + MqttQoS.AT_MOST_ONCE, false, false); result.onFailure(e -> log.error("public topic failed", e)); result.onSuccess(integer -> log.info("publish success,topic:{},payload:{}", topic, msg)); }