liurunyu
2023-11-18 c1ddfd71223c1a7d704b6f21b669fbfcb37adc82
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.dy.aceMw;
 
import com.dy.common.multiDataSource.EnableMultiDataSource;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
 
@SpringBootApplication
@EnableAspectJAutoProxy
@EnableMultiDataSource
@ComponentScan(basePackages = {"com.dy.common", "com.dy.pipIrrGlobal", "com.dy.aceMw"})
@MapperScan(basePackages={"com.dy.pipIrrGlobal.daoBa"})
public class PipIrrMwAcceptApplication implements CommandLineRunner {
 
    public static void main(String[] args) {
        SpringApplication.run(PipIrrMwAcceptApplication.class, args);
    }
 
    @Override
    public void run(String... args) throws Exception {
        try{
            //等待数据库初始化完成
            Thread.sleep(1000L);
        }catch (Exception e){}
        finally {
            this.startAceSv() ;
        }
    }
 
    private void startAceSv(){
 
    }
}