JAVA反射帮助类

反射对Java开发人员来说是最强大的功能之一了。标准的Java API真的很难使用,尤其是搜索和查询某些特殊的方法的时候。 Reflections这个库可以让这样工作变得想当简单。

官网地址 -> https://github.com/ronmamo/reflections

MAVEN引用方式:

<dependency>
    <groupId>org.reflections</groupId>
    <artifactId>reflections</artifactId>
    <version>0.9.9-RC1</version>
</dependency>

 

你可能感兴趣的:(java反射)