|  |  | 
 |  |  | package com.dy.pipIrrMwTestRtu; | 
 |  |  |  | 
 |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
 |  |  | import org.springframework.beans.factory.annotation.Value; | 
 |  |  | import org.springframework.boot.CommandLineRunner; | 
 |  |  | import org.springframework.boot.SpringApplication; | 
 |  |  | import org.springframework.boot.autoconfigure.SpringBootApplication; | 
 |  |  | import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; | 
 |  |  | 
 |  |  |                         "com.dy.common.mybatis..*", | 
 |  |  |                         "com.dy.common.singleDataSource..*", | 
 |  |  |                         "com.dy.common.webFilter..*", | 
 |  |  |                         "com.dy.common.webListener..*" | 
 |  |  |                         "com.dy.common.webListener..*", | 
 |  |  |                         "com.dy.pipIrrGlobal.webCtrls..*" | 
 |  |  |                 }) | 
 |  |  |         } | 
 |  |  | ) | 
 |  |  | public class PipIrrMwTestRtuApplication{ | 
 |  |  | public class PipIrrMwTestRtuApplication implements CommandLineRunner { | 
 |  |  |  | 
 |  |  |     public static void main(String[] args) { | 
 |  |  |         SpringApplication.run(PipIrrMwTestRtuApplication.class, args); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 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){ | 
 |  |  |             sv.startServer(); | 
 |  |  |         } | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     private Server sv ; | 
 |  |  |  | 
 |  |  |     @Autowired | 
 |  |  |     public void setSv(Server sv){ | 
 |  |  |         this.sv = sv ; | 
 |  |  |     } | 
 |  |  | } | 
 |  |  |  |