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 can also use @ComponentScans annotation:
@ComponentScans(value = { @ComponentScan("com.my.package.first"), @ComponentScan("com.my.package.second") })