Dynamic add classpath path
public void appendClasspath(String path) throws NoSuchMethodException, MalformedURLException, InvocationTargetException, IllegalAccessException {
Path externalResourcesFolder = Paths.get(path);
ClassLoader sysLoader = ClassLoader.getSystemClassLoader();
if (sysLoader instanceof URLClassLoader) {
Class<URLClassLoader> sysLoaderClass = URLClassLoader.class;
// Use reflection to invoke the private addURL method
Method method = sysLoaderClass.getDeclaredMethod("addURL", URL.class);
method.setAccessible(true);
method.invoke(sysLoader, externalResourcesFolder.toUri().toURL());
System.out.printf("classpath: %s loaded%n", path);
}
}