Reflection API不返回带注释的类

时间:2015-10-01 22:28:35

标签: java annotations

我正在尝试使用Reflections API,但我发现使用自定义注释很难找回类。

我从目录中传入一个URL列表;单步执行代码,它似乎找到了具有注释的类。

URLClassLoader urlClassLoader = new URLClassLoader(plugins.toArray(new URL[plugins.size()]), null);

            Reflections reflections = new Reflections(new ConfigurationBuilder()
                    .setUrls(ClasspathHelper.forClassLoader(urlClassLoader))
                    .setScanners(
                            new SubTypesScanner(false),
                            new TypeAnnotationsScanner()));

但是我需要包含注释的类的最后一段代码总是返回并且为空集。我做了什么明显的错误吗?

classes = reflections.getTypesAnnotatedWith(Column.class, true);

这是注释类;

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Column {
    boolean load() default false;
    Class loaderClass();
    Class criteriaClass();
    String indicator();
    String columnName();
}

看来我的失败点实际上是;

return Sets.newHashSet(concat(forNames(annotated, loaders()), forNames(classes, loaders())));

loaders方法返回null。填写了注释和类Iterables。

1 个答案:

答案 0 :(得分:1)

好的,所以看起来我有点过分了......

我传入的子目录需要使用URLClassLoader添加到ClassLoader。

URLClassLoader childURLClassLoader = new URLClassLoader(plugins.toArray(new URL[plugins.size()]), classLoader);

一旦我这样做,然后修改了ConfigurationBuilder;

Reflections reflections = new Reflections(new ConfigurationBuilder()
                    .setScanners(new SubTypesScanner(false), new TypeAnnotationsScanner())
                    .setUrls(ClasspathHelper.forClassLoader(childURLClassLoader)).addClassLoader(childURLClassLoader));

一切都很顺利。