You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 line
1.3KB

  1. package com.telpo.iotgateway;
  2. import com.telpo.iotgateway.server.IotSubscribe;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.boot.SpringApplication;
  6. import org.springframework.boot.autoconfigure.SpringBootApplication;
  7. import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
  8. import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
  9. import org.springframework.context.ConfigurableApplicationContext;
  10. import org.springframework.core.env.ConfigurableEnvironment;
  11. import org.springframework.scheduling.annotation.EnableAsync;
  12. import org.springframework.scheduling.annotation.EnableScheduling;
  13. /**
  14. * @program: DataPushServer
  15. * @description: 推送服务启动程序
  16. * @author: linwl
  17. * @create: 2020-07-10 18:04
  18. */
  19. @SpringBootApplication
  20. @EnableDiscoveryClient
  21. @ConfigurationPropertiesScan
  22. @EnableAsync
  23. @EnableScheduling
  24. @Slf4j
  25. public class IotGatewayApplication {
  26. public static void main(String[] args) {
  27. ConfigurableApplicationContext applicationContext = SpringApplication.run(IotGatewayApplication.class, args);
  28. ConfigurableEnvironment environment = applicationContext.getEnvironment();
  29. IotSubscribe iotSubscribe = new IotSubscribe(environment);
  30. iotSubscribe.start();
  31. log.info("推送服务启动!");
  32. }
  33. }