Skip to content
Advertisement

HiveMQ Java library fails to automatically reconnect to broker

I’m using the HiveMQ library in my Java Spring application to connect to a Mosquitto instance as I find it more user-friendly compared to the Paho client. But something is going wrong with the automatic reconnection. From time to time the connection is lost and the application doesn’t succeed in reconnecting (see logs 1). This can also be triggered by restarting the Mosquitto broker itself (see logs 2).

This is my client builder code with additional logging in the disconnect to check if the credentials are still correct:

JavaScript

1/ This is shown in my logs after the connection has been lost by the application itself:

JavaScript

2/ This is the logs after the broker has been restarted, some expected time-outs, but also in the end “not authorized”:

JavaScript

In both cases, the connection is back to normal with an application restart.

any ideas?

Advertisement

Answer

It appears that your question is answered in this issue:

If you set the username and password on the connect call, they will not be stored and reused when the client reconnects (for security reasons).

The following code (from the issue linked above) demonstrates the approach:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement