I\'ve tried to load the spring config file in src/test/resources classpath with the following abstract class:
@RunWith(SpringJUnit4ClassRunner.class) @ContextCon
Try by using * so that it can search to your classpath
@ContextConfiguration(locations={"classpath*:applicationContext.xml"})