Spring Testing: How to enable auto-scan of beans

You can do this:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class MyTest {

  @Test
  public void testSomething() {

  }

  @Configuration
  @ComponentScan("basepackage")
  public static class SpringConfig {

  }
}

By default @ContextConfiguration will look for static inner classes annotated with @Configuration, which is why this set up will just work.

You can get rid of loader param altogether, that is not required


If you have your spring configuration in an xml file you would use something like:

@ContextConfiguration(locations="classpath:applicationContext.xml")

If you use Java Config then you would use

@ContextConfiguration(classes=Config.class)

I used generic names in the above samples, you'll of course need to adapt to your project's configuration.

In both cases Spring's component scanning will need to be enabled for Spring to pickup the annotated classes.