Newer
Older
newfiber-termite / newfiber-termites / newfiber-termites-dataup / src / main / java / com / newfiber / termite / util / MqttUtils.java
@xiongkai xiongkai on 15 Nov 1 KB mq数据接收模块
package com.newfiber.termite.util;

import cn.hutool.core.util.RandomUtil;
import org.eclipse.paho.client.mqttv3.MqttClient;
import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;

public class MqttUtils {

    public static MqttClient getClient(String host, String userName, String userPassword ) throws Exception{
	    String clientId = RandomUtil.randomString(6);

        MqttClient client = new MqttClient(host, clientId, new MemoryPersistence());

        // MQTT的连接设置
        MqttConnectOptions options = new MqttConnectOptions();

        // 设置是否清空session,这里如果设置为false表示服务器会保留客户端的连接记录,这里设置为true表示每次连接到服务器都以新的身份连接
        options.setCleanSession(false);

        // 设置连接的用户名
        options.setUserName(userName);

        // 设置连接的密码
        options.setPassword(userPassword.toCharArray());

        // 设置超时时间 单位为秒
        options.setConnectionTimeout(10);

        // 设置会话心跳时间 单位为秒 服务器会每隔1.5*20秒的时间向客户端发送个消息判断客户端是否在线,但这个方法并没有重连的机制
        options.setKeepAliveInterval(20);

        client.connect(options);

        return client;
    }
}