Error : Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [applicationContext.xml]; nested exception is java.io.FileNotFoundException: class path resource [applicationContext.xml] cannot be opened because it d
Code:
ClassPathXmlApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
applicationContext.xml
is undersrc/main/resources
and you import it in a@Configuration
file using@ImportResource({"classpath*:applicationContext.xml"})
- Sunil Dabburi