package com.dy.pipIrrSell;
|
|
import com.dy.common.multiDataSource.EnableMultiDataSource;
|
import org.mybatis.spring.annotation.MapperScan;
|
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
import org.springframework.context.annotation.ComponentScan;
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
import org.springframework.context.annotation.FilterType;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2023/12/7 15:07
|
* @LastEditTime 2023/12/7 15:07
|
* @Description
|
*/
|
|
@SpringBootApplication
|
@EnableAspectJAutoProxy
|
@EnableMultiDataSource
|
@EnableConfigurationProperties
|
@ComponentScan(basePackages = {"com.dy.common", "com.dy.pipIrrGlobal", "com.dy.pipIrrSell"},
|
excludeFilters = {
|
@ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, classes = {
|
com.dy.common.singleDataSource.DruidDataSourceConfig.class //排除单数据源
|
})
|
}
|
)
|
@MapperScan({"com.dy.pipIrrGlobal.daoSe", "com.dy.pipIrrGlobal.daoBa", "com.dy.pipIrrGlobal.daoPr"})
|
public class PipIrrSellApplication {
|
|
public static void main(String[] args) {
|
SpringApplication.run(PipIrrSellApplication.class, args);
|
}
|
|
|
}
|