reflections icon indicating copy to clipboard operation
reflections copied to clipboard

Java runtime metadata analysis

Results 105 reflections issues
Sort by recently updated
recently updated
newest added

reference: https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api

As this library is not mantained anymore, could you guys recommend other librarys as replacement? Thanks

``` Reflections reflections = new Reflections(packageName); return new HashSet(reflections.getSubTypesOf(Object.class)); ``` this code returns an empty set, but i expect it to return a set of all classes version: 0.9.12

Hello! First things first: Thanks for creating such an awesome lib! I'm trying to use "reflections" with Java 11, but it seems there is no "module-info.java" file. I've tried to...

fixed two exception: 1、java.lang.NullPointerException at org.reflections.util.ConfigurationBuilder.build(ConfigurationBuilder.java:74) 2、Exception in thread "main" org.reflections.ReflectionsException: could not use param 'java.net.URLClassLoader@64d2d351'

When passing classloader exception is thrown: new Reflections(classLoader,.. Looks like the filtering of params is wrong. ![image](https://user-images.githubusercontent.com/2301825/138922452-b39ed592-86a8-49d3-9fa1-127c27291f71.png) Classloader remains in params list and is unhandled -> else throw new ReflectionsException("could...

marked for next release

Hi, everyone. I hope you're doing well. My project is https://github.com/marginallyclever/robot-overlord-app I have class `com/marginallyclever/ro3/AllPanels.java` which uses Reflections to find all JPanel in the package `com.marginallyclever.ro3`. Works great. I have...

My goal is to scan classes under all paths. same code ``` public final Reflections reflections = new Reflections(); ``` In jdk 8, All classes were scanned; In jdk 16,...