| package com.dy.pipIrrParamSet; | 
|   | 
| import lombok.extern.slf4j.Slf4j; | 
| import org.springframework.beans.factory.annotation.Autowired; | 
| import org.springframework.boot.CommandLineRunner; | 
| import org.springframework.boot.WebApplicationType; | 
| import org.springframework.boot.autoconfigure.SpringBootApplication; | 
| import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; | 
| import org.springframework.boot.builder.SpringApplicationBuilder; | 
| import org.springframework.context.annotation.ComponentScan; | 
| import org.springframework.context.annotation.FilterType; | 
|   | 
| /** | 
|  * @Author: liurunyu | 
|  * @Date: 2025/5/28 15:36 | 
|  * @Description | 
|  */ | 
|   | 
| @Slf4j | 
| @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) //禁止启动数据库连接池 | 
| @ComponentScan(basePackages = {"com.dy.common", "com.dy.pipIrrGlobal", "com.dy.pipIrrParamSet"}, | 
|         excludeFilters = { | 
|                 @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, classes = { | 
|                         com.dy.common.apiDoc.SpringApiConfig.class, //一种排除类的方式 | 
|                         com.dy.pipIrrGlobal.config.DingTalk.class | 
|                 }), | 
|                 @ComponentScan.Filter(type = FilterType.REGEX, pattern = { | 
|                         //二种排除类的方式,写正则表达式,需要对目标类的完全限定名完全匹配,否则不生效 | 
|                         "com.dy.common.aop..*", | 
|                         "com.dy.common.apiDoc..*", | 
|                         "com.dy.common.multiDataSource..*", | 
|                         "com.dy.common.singleDataSource..*", | 
|                         "com.dy.common.mybatis..*", | 
|                         "com.dy.common.webFilter..*", | 
|                         "com.dy.common.webListener..*", | 
|                         "com.dy.pipIrrGlobal.config..*", | 
|                         "com.dy.pipIrrGlobal.webCtrls..*" | 
|                 }) | 
|         } | 
| ) | 
| public class PipIrrParamSetApplication implements CommandLineRunner { | 
|   | 
|     /** | 
|      * 参数: 软件空间根目录,例如:E:\javaWorkspaces\pipIrr\pipIrr-platform\ | 
|      * @param args | 
|      */ | 
|     public static void main(String[] args) { | 
|         parseArg(args) ; | 
|         new SpringApplicationBuilder(PipIrrParamSetApplication.class) | 
|                 .web(WebApplicationType.NONE)//不启动web服务 | 
|                 .run(args); | 
|     } | 
|   | 
|   | 
|     private static void parseArg(String[] args){ | 
|         if(args != null | 
|                 && args.length > 0 | 
|                 && args[0] != null | 
|                 && !args[0].trim().equals("")){ | 
|             ServerProperties.WorkspaceRoot = args[0] ; | 
|             if(!ServerProperties.WorkspaceRoot.endsWith("\\") && !ServerProperties.WorkspaceRoot.endsWith("/")){ | 
|                 ServerProperties.WorkspaceRoot += "\\" ; | 
|             } | 
|             log.info("参数【软件空间根目录】:" + ServerProperties.WorkspaceRoot); | 
|         } | 
|     } | 
|   | 
|     /** | 
|      * Spring容器启动完成后,执行下面方法 | 
|      * @param args 参数 | 
|      * @throws Exception 异常 | 
|      */ | 
|     @Override | 
|     public void run(String... args) throws Exception { | 
|         try{ | 
|             //等待一下 | 
|             Thread.sleep(500L); | 
|         }catch (Exception e){ | 
|             e.printStackTrace(); | 
|         } | 
|         finally { | 
|             this.startMwSv() ; | 
|         } | 
|     } | 
|   | 
|     private void startMwSv(){ | 
|         if(sv != null){ | 
|             try { | 
|                 sv.startServer(); | 
|             }catch (Exception e){ | 
|                 e.printStackTrace(); | 
|             } | 
|         } | 
|     } | 
|   | 
|     private Server sv ; | 
|   | 
|     @Autowired | 
|     public void setSv(Server sv){ | 
|         this.sv = sv ; | 
|     } | 
|   | 
| } |