在 Java 中,我可以org.reflections
用于扫描包和搜索带注释的类。
像这样:
Reflections ref = new Reflections("my.path");
Set<Class<?>> set = ref.getTypesAnnotatedWith(MyAnnotation.class);
如何在scala中获得带注释的类?我使用scala 2.11
和scala-reflect
。
PSorg.reflections
在scala中效果很好,但我搜索原生乐器。