package com.dy.pipIrrMwTestWeb; import com.dy.pipIrrMwTestWeb.test.CommandCtrl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.FilterType; @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) //禁止启动数据库连接池 @ComponentScan(basePackages = {"com.dy.common", "com.dy.pipIrrGlobal", "com.dy.pipIrrMwTestWeb"}, excludeFilters = { @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, classes = { com.dy.common.apiDoc.SpringApiConfig.class //一种排除类的方式 }), @ComponentScan.Filter(type = FilterType.REGEX, pattern = { //二种排除类的方式,写正则表达式,需要对目标类的完全限定名完全匹配,否则不生效 "com.dy.common.aop..*", "com.dy.common.apiDoc..*", "com.dy.common.multiDataSource..*", "com.dy.common.mybatis..*", "com.dy.common.singleDataSource..*", "com.dy.common.webFilter..*", "com.dy.common.webListener..*" }) } ) public class PipIrrMwTestWebApplication{ @Autowired private CommandCtrl test ; public static void main(String[] args) { SpringApplication.run(PipIrrMwTestWebApplication.class, args); } }