您好,登錄后才能下訂單哦!
利用java怎么將外部jar包添加到lasspath?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
java動態添加外部jar包到classpath的實例詳解
前言:
在項目開發過程中我們有時候需要動態的添加外部jar包,但是具體的業務需求還沒有遇到過,因為如果動態添加外部jar包后,我們就需要修改業務代碼,而修改代碼就需要重新啟動服務,那樣好像就沒有必要動態添加外部jar包了,怎么樣才能不重新啟動服務器就可以使用最新的代碼我沒有找到方法,如果各位知道的話給我點建議,回歸主題,實現動態添加外部jar包到classpath的方法如下:
String beanClassName = "com.dynamic.DynamicBean3"; Map<String,Class<?>> classMap = new HashMap<String,Class<?>>(); String filePath = "f:\\testDynamicBean-1.0-SNAPSHOT.jar"; String uFilePath = "file:f:\\testDynamicBean-1.0-SNAPSHOT.jar"; URL url1 = new URL(uFilePath); URLClassLoader urlClassLoader = new URLClassLoader(new URL[] { url1 }, Thread.currentThread() .getContextClassLoader()); List<JarEntry> jarEntryList = new ArrayList<>(); JarFile jarFile = new JarFile(filePath); Enumeration<JarEntry> jarEntryEnumeration = jarFile.entries(); while (jarEntryEnumeration.hasMoreElements()){ JarEntry jarEntry = jarEntryEnumeration.nextElement(); if (//jarEntry.getName().startsWith(filePath) && jarEntry.getName().endsWith(".class")) { jarEntryList.add(jarEntry); } } for (JarEntry entry : jarEntryList) { String className = entry.getName().replace('/', '.'); className = className.substring(0, className.length() - 6); if(!classMap.containsKey(beanClassName)){ Class<?> loadClass = urlClassLoader.loadClass(className); classMap.put(className,loadClass); } } try { Method printMethod = classMap.get(beanClassName).getMethod("printBean3"); printMethod.invoke(classMap.get(beanClassName).newInstance()); } catch (IllegalAccessException e) { e.printStackTrace(); } catch (InvocationTargetException e) { e.printStackTrace(); } catch (NoSuchMethodException e) { e.printStackTrace(); } catch (InstantiationException e) { e.printStackTrace(); }
關于利用java怎么將外部jar包添加到lasspath問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。