Sorry, maybe this question is too stupid or already answered, but I could not find it.
I am wondering if there is some well-known Java classloader capable of accepting remote files in the classpath, i.e. entries such as CLASSPATH = "http: //somewhere.net/library.jar: ...".
Note that I'm not talking about applets or Java Web Start. Think of an application that can use different back-end (for example, MySQL, Oracle), I would like to prepare the path to the classes in the shell script based on user preferences and load the class loader necessary jar (jdbc driver in this example) from the server distribution. I'm not talking about Maven either (the user just gets the binary distribution, I don't want to force them to create what they need from the sources).
source share