瀏覽代碼

增加调试信息

master
林万龙 3 年之前
父節點
當前提交
5c50a5f92e
共有 1 個檔案被更改,包括 5 行新增5 行删除
  1. +5
    -5
      src/main/java/com/telpo/iotgateway/server/IotSubscribe.java

+ 5
- 5
src/main/java/com/telpo/iotgateway/server/IotSubscribe.java 查看文件

@@ -97,20 +97,20 @@ public class IotSubscribe {
Destination queue = (Destination)context.lookup("QUEUE"); Destination queue = (Destination)context.lookup("QUEUE");


// 创建连接。 // 创建连接。
log.debug("Befor cf.createConnection");
log.warn("Befor cf.createConnection");
Connection connection = cf.createConnection(userInfo, password); Connection connection = cf.createConnection(userInfo, password);
log.debug("Befor connection.addConnectionListener");
log.warn("Befor connection.addConnectionListener");
((JmsConnection) connection).addConnectionListener(myJmsConnectionListener); ((JmsConnection) connection).addConnectionListener(myJmsConnectionListener);
// 创建会话。 // 创建会话。
// Session.CLIENT_ACKNOWLEDGE: 收到消息后,需要手动调用message.acknowledge()。 // Session.CLIENT_ACKNOWLEDGE: 收到消息后,需要手动调用message.acknowledge()。
// Session.AUTO_ACKNOWLEDGE: SDK自动ACK(推荐)。 // Session.AUTO_ACKNOWLEDGE: SDK自动ACK(推荐)。
log.debug("Befor connection.createSession");
log.warn("Befor connection.createSession");
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
log.debug("Befor connection.start");
log.warn("Befor connection.start");
connection.start(); connection.start();


// 创建Receiver连接。消费消息 // 创建Receiver连接。消费消息
log.debug("Befor session.createConsumer");
log.warn("Befor session.createConsumer");
MessageConsumer consumer = session.createConsumer(queue); MessageConsumer consumer = session.createConsumer(queue);


// 设置消息侦听 // 设置消息侦听


Loading…
取消
儲存