From 317ad9281040d908a7d116e907d972adea8b3e00 Mon Sep 17 00:00:00 2001 From: linwl <304115325@qq.com> Date: Thu, 15 Apr 2021 16:28:25 +0800 Subject: [PATCH] =?UTF-8?q?IOT=E8=B0=83=E7=94=A8=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/telpo/iotgateway/IotGatewayApplication.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/telpo/iotgateway/IotGatewayApplication.java b/src/main/java/com/telpo/iotgateway/IotGatewayApplication.java index 82562f2..e29901f 100644 --- a/src/main/java/com/telpo/iotgateway/IotGatewayApplication.java +++ b/src/main/java/com/telpo/iotgateway/IotGatewayApplication.java @@ -31,8 +31,8 @@ public class IotGatewayApplication { ConfigurableApplicationContext applicationContext = SpringApplication.run(IotGatewayApplication.class, args); ConfigurableEnvironment environment = applicationContext.getEnvironment(); - IotCommunication iotSubscribe = new IotCommunication(environment); - iotSubscribe.start(); + IotCommunication iotCommunication = new IotCommunication(environment); + iotCommunication.start(); log.info("推送服务启动!"); } }