Spring / Spring Interview questions II
Difference between FileSystemResource and ClassPathResource in Spring framework.
ClassPathResource looks at the class path for spring configuration file while FileSystemResource looks in the file system.
In ClassPathResource spring searches for the spring configuration file at the ClassPath so spring-config.xml should be included in classpath. If spring-config.xml is placed at src folder, then the configuration file can be used directly because src is already in classpath path by default.
In FileSystemResource the path of spring-config.xml (Spring Configuration) file need to be provided relative to the project or the absolute location of the file.
More Related questions...