classpath
Inside a directory named "application" I have a jar file "test.jar" and another directory named "config". My class inside the jar loads a file config.xml from classpath. The config.xml is present inside the "config" directory. I have added 'Class-Path=. ./ config' to the jar manifest. When I run my class inside the jar as 'java -classpath test.jar Test' it throws Exception, File not found in the classpath. But if I run it like 'java -classpathconfig;test.jar Test' it is successful.
Please help me to understand this behaviour.

