All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feingto.iot.client.IoTClient Maven / Gradle / Ivy

There is a newer version: 2.3.1.RELEASE
Show newest version
package com.feingto.iot.client;

import org.springframework.boot.Banner;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;

/**
 * IoT 客户端
 *
 * @author longfei
 */
@SpringBootApplication
public class IoTClient {
    public static void main(String[] args) {
        new SpringApplicationBuilder()
                .bannerMode(Banner.Mode.OFF)
                .sources(IoTClient.class)
                .run(args);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy