old mode 100644
new mode 100755
| | |
| | | package com.java110.service.init; |
| | | |
| | | import com.java110.common.factory.ApplicationContextFactory; |
| | | import com.java110.core.log.LoggerFactory; |
| | | import com.java110.dto.system.SystemLogDto; |
| | | import com.java110.utils.constant.EnvironmentConstant; |
| | | import com.java110.utils.factory.ApplicationContextFactory; |
| | | import com.java110.utils.util.StringUtil; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.context.ApplicationContext; |
| | | import org.springframework.core.env.Environment; |
| | | |
| | | /** |
| | | * Created by wuxw on 2018/5/7. |
| | |
| | | |
| | | private final static Logger logger = LoggerFactory.getLogger(ServiceStartInit.class); |
| | | |
| | | private static Environment env; |
| | | |
| | | public static void initSystemConfig(ApplicationContext context){ |
| | | public static void initSystemConfig(ApplicationContext context) { |
| | | //加载配置文件,注册订单处理侦听 |
| | | try { |
| | | ApplicationContextFactory.setApplicationContext(context); |
| | | } |
| | | catch (Exception ex) { |
| | | env = context.getEnvironment(); |
| | | |
| | | String logSwitch = env.getProperty(EnvironmentConstant.LOG_SWITCH); |
| | | //String logSwitch = "ON"; |
| | | if (!StringUtil.isEmpty(logSwitch)) { |
| | | //设置日志级别 |
| | | SystemLogDto.setLogSwatch(logSwitch); |
| | | } |
| | | } catch (Exception ex) { |
| | | throw new IllegalStateException("系统初始化失败", ex); |
| | | } |
| | | } |
| | | |
| | | |
| | | public static void preInitSystemConfig() { |
| | | //加载配置文件,注册订单处理侦听 |
| | | String logSwitch = System.getenv(EnvironmentConstant.LOG_SWITCH); |
| | | if (!StringUtil.isEmpty(logSwitch)) { |
| | | //设置日志级别 |
| | | SystemLogDto.setLogSwatch(logSwitch); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 打印启动成功的标识 |
| | | */ |
| | | public static void printStartSuccessInfo(){ |
| | | System.out.println("================================================================================================="); |
| | | System.out.println("= ="); |
| | | System.out.println("= 服务启动成功!! ="); |
| | | System.out.println("= service start success !! ="); |
| | | System.out.println("= ="); |
| | | System.out.println("================================================================================================="); |
| | | } |
| | | |
| | | |
| | | } |