I'm building a Java application that has parts that require daily update. I want to download frequently updated parts as small jar file from my server to memory. I'm downloading the jar file as byte stream and not using URLClassloader.
How can I make the classes in the jar file to be available to the system class loader from my custom class loader?
How can I make sure that the download jar file and loaded classes are never cached or written to disk.