Browse Source

增加调试信息

master
林万龙 4 years ago
parent
commit
df34c7fccc
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/java/com/telpo/iotgateway/listener/IotMessageListener.java

+ 2
- 2
src/main/java/com/telpo/iotgateway/listener/IotMessageListener.java View File

@@ -19,7 +19,7 @@ import java.util.concurrent.ExecutorService;
@Component @Component
public class IotMessageListener implements MessageListener { public class IotMessageListener implements MessageListener {


private static int count = 0;
private int count = 0;


private ExecutorService executorService; private ExecutorService executorService;
public void setExecutorService(ExecutorService executorService) { public void setExecutorService(ExecutorService executorService) {
@@ -44,7 +44,7 @@ public class IotMessageListener implements MessageListener {
/** /**
* 在这里处理您收到消息后的具体业务逻辑。 * 在这里处理您收到消息后的具体业务逻辑。
*/ */
private static void processMessage(Message message) {
private void processMessage(Message message) {
try { try {
byte[] body = message.getBody(byte[].class); byte[] body = message.getBody(byte[].class);
String content = new String(body); String content = new String(body);


Loading…
Cancel
Save