我想尽可能使用Java代码将jar文件动态添加到我的项目的类路径中,我想使用外部jar文件并加载其类,以便稍后将其作为Beans执行(Spring框架)。
谢谢 :)
URLClassLoader child = new URLClassLoader (myJar.toURL(), this.getClass().getClassLoader()); Class classToLoad = Class.forName (“com.MyClass”, true, child); Method method = classToLoad.getDeclaredMethod (“myMethod”); Object instance = classToLoad.newInstance (); Object result = method.invoke (instance);