В чем разница между путем к классу и файловой системой?

Я знаю это:

ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");

loads context definition from an XML file located in the classpath, treating context definitions as classpath resources.

ApplicationContext context = new FileSystemXmlApplicationContext("bean.xml");

loads context definition from an XML file in the filesystem.

XmlWebApplicationContext

loads context definition from an XML file contained within a web application.

Но что это значит?

Спасибо :)

Ответы на вопрос(3)

Ваш ответ на вопрос