How to scan JAR's, which are loaded at runtime, with Google reflections library?

不想你离开。 提交于 2019-12-07 09:41:16

问题


Is there a solution to configure the reflection library so that it scans also JAR's which are added at runtime with URLClassLoader?

For now, reflections just scans the URLs in the ClassLoader. This is the configuration which I am using now:

Reflections reflections = new Reflections(new ConfigurationBuilder().setUrls(ClasspathHelper.forClassLoader()));

I couldn't find any hints in the doc of the reflections library.

EDIT: This is how I load the jar File:

File f = new File("C:/Users/mkorsch/Desktop/test-reflections.jar");
URLClassLoader urlCl = new URLClassLoader(new URL[] {f.toURI().toURL()},System.class.getClassLoader());

回答1:


Maybe you need to use the relevant classloader as well,

Reflections reflections = new Reflections(new ConfigurationBuilder().setUrls(ClasspathHelper.forPackage("my.package", myClassLoader)).addClassLoader(myClassLoader));

Or just:

new Reflections("my.package", myClassLoader, scanners, ...)

Check it out in the documentation.



来源:https://stackoverflow.com/questions/17545259/how-to-scan-jars-which-are-loaded-at-runtime-with-google-reflections-library

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!