我正在使用来自第三方消息代理的以下代码来使用消息提要。我们使用STOMP协议,并且代码是使用activemq-all库开发的。我注意到该连接偶尔会挂起(每1-2周之后没有任何馈送)。因此,我想使用STOMP协议的心跳功能,因此为stompConnection
添加了heart-beat头,如下所示:
StompConnection stompConnection = new StompConnection();
stompConnection.open(new Socket("ABC", 1234));
HashMap<String, String> headers = new HashMap<>();
headers.put("login", "abcd");
headers.put("passcode", "defghij");
headers.put("heart-beat", "0,10000");//heart-beat header newly added
stompConnection.connect(headers);
stompConnection.subscribe("topic1", "auto");
while(true) {
StompFrame stompMessage = stompConnection.receive(10000);
String messageBody = stompMessage.getBody();
//process messageBody here
}
现在我的问题是,有什么方法可以找到/跟踪我的应用程序(高于Java客户端)正在接收来自发送方的心跳吗?
答案 0 :(得分:1)
该库是仅支持测试的工具,除影响ActiveMQ测试的问题外,不支持其他问题。使用它是有风险的,不建议在任何生产级别的工作中使用。使用具有实际支持的完整开源Stomp客户端会更好。跟踪此客户端的心跳,您将需要下降到套接字级别并直接跟踪传入的字节。