有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java如何在HiveMQ客户端中正确使用SSL配置?(MQTT)

我创建了一个客户端,使用安全连接和加密负载进行测试,所以我想使用默认的SSL配置。我试图这样做,但我得到了一个ConnectionClosedException和服务器立即密切。我应该在服务器上配置什么吗?我在下面留下了代码和异常

HiveMQ:

https://github.com/hivemq/hivemq-community-editionhttps://github.com/hivemq/hivemq-mqtt-client

代码:

    // Creates the client object using Blocking API 

     subscriber = Mqtt5Client.builder()
    .identifier(UUID.randomUUID().toString()) // the unique identifier of the MQTT client. The ID is randomly generated between 
    .serverHost("localhost")  // the host name or IP address of the MQTT server. Kept it localhost for testing. localhost is default if not specified.
    .serverPort(1883)  // specifies the port of the server
    .addConnectedListener(context -> ClientConnectionRetreiver.printConnected("Subscriber1"))        // prints a string that the client is connected
    .addDisconnectedListener(context -> ClientConnectionRetreiver.printDisconnected("Subscriber1"))  // prints a string that the client is disconnected
    .sslWithDefaultConfig()
    .buildBlocking();  // creates the client builder                
     subscriber.connect();

例外情况:

com.hivemq.client.mqtt.exceptions.ConnectionClosedException: Server closed connection without DISCONNECT.
at com.hivemq.client.internal.mqtt.MqttBlockingClient.connect(MqttBlockingClient.java:91)
at com.hivemq.client.mqtt.mqtt5.Mqtt5BlockingClient.connect(Mqtt5BlockingClient.java:64)
at com.main.SubThread.run(SubThread.java:71)
at java.base/java.lang.Thread.run(Thread.java:834)

共 (1) 个答案