posted 17 years ago
Hi all.
Here's what i want to do...
Have my entire program contained in an executable jar file.
Have the external library jars referenced in the manifest's classpath.
Have configuration files, referenced in the manifest classpath, outside the jar file in a folder named 'config'.
These configuration files (application-context.xml etc, log4j.properties) should be un-jared and editable on the classpath.
Here's the problem....
I can only get the config files accessible from the manifest classpath if i put them in a jar.
For example, how can i configure log4j for use from within the executable jar, without having to jar up the .properties files?
Thanks for any help !