package com.java110.log; /** * Hello world! */ import com.java110.service.init.ServiceStartInit; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.cloud.openfeign.EnableFeignClients; import org.springframework.context.ApplicationContext; /** * 日志服务初始化启动类 初始化启动类 * * @version v0.1 * @auther com.java110.wuxw * @mail 928255095@qq.com * @date 2016年8月6日 * @tag */ @SpringBootApplication(scanBasePackages = {"com.java110.service","com.java110.log", "com.java110.feign.code","com.java110.core","com.java110.config.properties.code","com.java110.cache"}) @EnableDiscoveryClient @EnableFeignClients(basePackages = {"com.java110.core.smo"}) public class LogServiceApplicationStart { private static Logger logger = LoggerFactory.getLogger(LogServiceApplicationStart.class); public static void main(String[] args) throws Exception { try{ ApplicationContext context = SpringApplication.run(LogServiceApplicationStart.class, args); ServiceStartInit.initSystemConfig(context); }catch (Throwable e){ logger.error("系统启动失败",e); } } }