Multiple choice technology web technology

This context loads a context definition from an XML file located in the class path, treating context definition files as class path resources

  1. ClassPathXmlApplicationContext

  2. FileSystemXmlApplicationContext

  3. XmlWebApplicationContext

  4. XmlFileSystemApplicationContext

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

ClassPathXmlApplicationContext loads bean definitions from XML files on the classpath. Unlike FileSystemXmlApplicationContext (which uses file system paths), it treats paths as class path resources (e.g., 'applicationContext.xml' finds it anywhere on classpath).