我正在使用快速类路径扫描器(v2.18.1作为Javers的一部分)
<dependency>
<groupId>io.github.lukehutch</groupId>
<artifactId>fast-classpath-scanner</artifactId>
<version>2.18.1</version>
</dependency>
,我试图扫描类路径中的特定文件夹,以获取所有带
注释的类。@Entity
我在这里给出的代码是使用Javers实用程序类
ReflectionUtil.findClasses(Entity.class, "my.model");
或
new FastClasspathScanner("my.model").scan().getNamesOfClassesWithAnnotation(Entity.class)
在上述两种情况下,上述代码段都会返回一个空的Collection。
是否有一些特殊的技巧可以使此游戏按预期进行并扫描那些@Entity注释的类?