springboot启动加速 springboot startu
2018-11-14 本文已影响42人
anyangdp
@SpringBootApplication
替代成
@ComponentScan(lazyInit = true, excludeFilters = @ComponentScan.Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class))
@SpringBootApplication
替代成
@ComponentScan(lazyInit = true, excludeFilters = @ComponentScan.Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class))