I\'m using Spring 3.1 and bootstrapping an application using the @Configuration and @ComponentScan attributes.
@Configuration
@ComponentScan
The actual start is done wit
You use ComponentScan to scan multiple packages using
@ComponentScan({"com.my.package.first","com.my.package.second"})