}
private ApplicationContext getApplicationContext() {
ClassLoader classLoader = ContextHelper.class.getClassLoader();
if (classLoader.getResource(ContextHelper.APPLICATION_CONFIGURATION) == null) {
throw new ConfigurationNotFoundException("File " + ContextHelper.APPLICATION_CONFIGURATION + " not found");
}
return new ClassPathXmlApplicationContext(new String[] { ContextHelper.APPLICATION_CONFIGURATION });
}