-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
Expected Behavior
Spring-integration-mqtt supports mqtt protocol version 5. (Currently, it only support mqtt protocol version 3)
Current Behavior
Latest spring-integration-mqtt
still support mqtt version 3 by integrating with
<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
<version>1.2.4</version>
<scope>compile</scope>
</dependency>
We have a project which requires a Spring Boot app integrate with mqttv5 client.
<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.mqttv5.client</artifactId>
<version>1.2.5</version>
</dependency>
I would like to check if we have the plan to have new release of spring-integration-mqtt
which is able to support mqtt version 5.
How has this issue affected you? our team will develop a springboot app which need to support mqtt version 5. However, the current spring-integration-mqtt dependency only support mqtt version 3.
What are you trying to accomplish? We would like to have a new release of spring-integration-mqtt which is able to support mqtt version 5.
What other alternatives have you considered?
Are you aware of any workarounds? I have two thoughts: 1. Write a full functional mqtt version 5 client, but it need to handle all connect, reconnect, disconnet and other features. 2. Write a simplified spring-integration-mqtt
dependency which integrate with org.eclipse.paho.mqttv5.client
I am looking forward to hearing from spring team soon.
Thanks