非web容器启动代码如下:
SpringApplication application = new SpringApplication(TradeApplication.class);
application.setWebApplicationType(WebApplicationType.NONE);// 设置不需要用到web ApplicationContext
application.run(args);
springboot 启动默认配置 webApplicationContext , 使用web 容器(tomcat,jetty)提供web 服务,但平时的一些后台工程需要deamon 方式后台运行,因为启动web 容器就显得多余。