@ComponentScan(
excludeFilters = {
@ComponentScan.Filter(
type = FilterType.REGEX,
pattern =
"com.base.package.*"
)
)
Under com.base.package. there is a class that I do not want to be excluded, how can I include this single class?