Jython for WEbsphere: referring to directory of jars
I have a directory of jars. How can I tell my appplication / server to use all of them in its classpath?
I can use shared lib reference. But, is it also possible to use the classpath option - for example - like this: 'C:\myFo开发者_Go百科lder\' or 'C:\myFolder*.jar'.
Thank you.
In Java 6 (and later) you can actually include foo/bar/* in the classpath to refer to "all the jars in foo/bar".
精彩评论