如果可能的话,我想使用java代码动态地将jar文件添加到项目的类路径中,我想使用外部jar文件并加载它们的类,然后将它们作为Beans执行(Spring框架)。
谢谢:)
答案 0 :(得分:12)
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);
答案 1 :(得分:2)
您可以尝试这样的操作,但需要您知道JARs
的确切位置。
URLClassLoader cl = URLClassLoader.newInstance(new URL[] {myJarFiles});
Class myClass = cl.loadClass("com.mycomp.proj.myclass");
Method printMeMethod = myClass.getMethod("printMe", new Class[] {String.class, String.class});
Object myClassObj = myClass.newInstance();
Object response = printMeMethod.invoke(myClassObj, "String1", "String2");