If I write only
@ComponentScan
Spring will scan the current package and below.
If I write
@ComponentScan(basePackages = {"my.package.com"})
Can I specify current package implicitly along with some explicit packages?
Something like this
@ComponentScan(basePackages = {"", "my.package.com"})