Reflections

Reflections - a Java runtime metadata analysis

License

License

Categories

Categories

H2 Data Databases Reflections Application Layer Libs Introspection H2O Business Logic Libraries Machine Learning
GroupId

GroupId

ai.h2o
ArtifactId

ArtifactId

reflections
Last Version

Last Version

0.9.11-h2o-custom
Release Date

Release Date

Type

Type

jar
Description

Description

Reflections
Reflections - a Java runtime metadata analysis
Project URL

Project URL

http://github.com/ronmamo/reflections
Source Code Management

Source Code Management

https://github.com/ronmamo/reflections/issues

Download reflections

How to add to project

<!-- https://jarcasting.com/artifacts/ai.h2o/reflections/ -->
<dependency>
    <groupId>ai.h2o</groupId>
    <artifactId>reflections</artifactId>
    <version>0.9.11-h2o-custom</version>
</dependency>
// https://jarcasting.com/artifacts/ai.h2o/reflections/
implementation 'ai.h2o:reflections:0.9.11-h2o-custom'
// https://jarcasting.com/artifacts/ai.h2o/reflections/
implementation ("ai.h2o:reflections:0.9.11-h2o-custom")
'ai.h2o:reflections:jar:0.9.11-h2o-custom'
<dependency org="ai.h2o" name="reflections" rev="0.9.11-h2o-custom">
  <artifact name="reflections" type="jar" />
</dependency>
@Grapes(
@Grab(group='ai.h2o', module='reflections', version='0.9.11-h2o-custom')
)
libraryDependencies += "ai.h2o" % "reflections" % "0.9.11-h2o-custom"
[ai.h2o/reflections "0.9.11-h2o-custom"]

Dependencies

compile (7)

Group / Artifact Type Version
com.google.guava : guava jar 18.0
org.javassist : javassist Optional jar 3.18.2-GA
com.google.code.findbugs : jsr305 jar 3.0.0
org.slf4j : slf4j-api Optional jar 1.6.1
dom4j : dom4j Optional jar 1.6.1
com.google.code.gson : gson Optional jar 1.4
org.slf4j : slf4j-simple Optional jar 1.6.1

provided (2)

Group / Artifact Type Version
javax.servlet : servlet-api Optional jar 2.5
org.apache.commons : commons-vfs2 Optional jar 2.0

test (1)

Group / Artifact Type Version
junit : junit jar 4.5

Project Modules

There are no modules declared in this project.

Released org.reflections:reflections:0.9.12 - with support for Java 8

Reflections library has over 2.5 million downloads per month from Maven Central, and is being used by thousands of projects and libraries. We're looking for maintainers to assist in reviewing pull requests and managing releases, please reach out.

Java runtime metadata analysis, in the spirit of Scannotations

Reflections scans your classpath, indexes the metadata, allows you to query it on runtime and may save and collect that information for many modules within your project.

Using Reflections you can query your metadata such as:

  • get all subtypes of some type
  • get all types/members annotated with some annotation
  • get all resources matching a regular expression
  • get all methods with specific signature including parameters, parameter annotations and return type

Build Status

Intro

Add Reflections to your project. for maven projects just add this dependency:

<dependency>
    <groupId>org.reflections</groupId>
    <artifactId>reflections</artifactId>
    <version>0.9.12</version>
</dependency>

A typical use of Reflections would be:

Reflections reflections = new Reflections("my.project");

Set<Class<? extends SomeType>> subTypes = reflections.getSubTypesOf(SomeType.class);

Set<Class<?>> annotated = reflections.getTypesAnnotatedWith(SomeAnnotation.class);

Usage

Basically, to use Reflections first instantiate it with urls and scanners

//scan urls that contain 'my.package', include inputs starting with 'my.package', use the default scanners
Reflections reflections = new Reflections("my.package");

//or using ConfigurationBuilder
new Reflections(new ConfigurationBuilder()
     .setUrls(ClasspathHelper.forPackage("my.project.prefix"))
     .setScanners(new SubTypesScanner(), 
                  new TypeAnnotationsScanner().filterResultsBy(optionalFilter), ...),
     .filterInputsBy(new FilterBuilder().includePackage("my.project.prefix"))
     ...);

Then use the convenient query methods: (depending on the scanners configured)

//SubTypesScanner
Set<Class<? extends Module>> modules = 
    reflections.getSubTypesOf(com.google.inject.Module.class);
//TypeAnnotationsScanner 
Set<Class<?>> singletons = 
    reflections.getTypesAnnotatedWith(javax.inject.Singleton.class);
//ResourcesScanner
Set<String> properties = 
    reflections.getResources(Pattern.compile(".*\\.properties"));
//MethodAnnotationsScanner
Set<Method> resources =
    reflections.getMethodsAnnotatedWith(javax.ws.rs.Path.class);
Set<Constructor> injectables = 
    reflections.getConstructorsAnnotatedWith(javax.inject.Inject.class);
//FieldAnnotationsScanner
Set<Field> ids = 
    reflections.getFieldsAnnotatedWith(javax.persistence.Id.class);
//MethodParameterScanner
Set<Method> someMethods =
    reflections.getMethodsMatchParams(long.class, int.class);
Set<Method> voidMethods =
    reflections.getMethodsReturn(void.class);
Set<Method> pathParamMethods =
    reflections.getMethodsWithAnyParamAnnotated(PathParam.class);
//MethodParameterNamesScanner
List<String> parameterNames = 
    reflections.getMethodParamNames(Method.class)
//MemberUsageScanner
Set<Member> usages = 
    reflections.getMethodUsages(Method.class)
  • If no scanners are configured, the default will be used - SubTypesScanner and TypeAnnotationsScanner.
  • Classloader can also be configured, which will be used for resolving runtime classes from names.
  • Reflections expands super types by default. This solves some problems with transitive urls are not scanned.

Checkout the javadoc for more info.

Also, browse the tests directory to see some more examples.

ReflectionUtils

ReflectionsUtils contains some convenient Java reflection helper methods for getting types/constructors/methods/fields/annotations matching some predicates, generally in the form of *getAllXXX(type, withYYY)

for example:

import static org.reflections.ReflectionUtils.*;

Set<Method> getters = getAllMethods(someClass,
  withModifier(Modifier.PUBLIC), withPrefix("get"), withParametersCount(0));

//or
Set<Method> listMethodsFromCollectionToBoolean = 
  getAllMethods(List.class,
    withParametersAssignableTo(Collection.class), withReturnType(boolean.class));

Set<Field> fields = getAllFields(SomeClass.class, withAnnotation(annotation), withTypeAssignableTo(type));

See more in the ReflectionUtils javadoc

Integrating into your build lifecycle

Although scanning can be easily done on bootstrap time of your application - and shouldn't take long, it is sometime a good idea to integrate Reflections into your build lifecyle. With simple Maven/Gradle/SBT/whatever configuration you can save all scanned metadata into xml/json files just after compile time. Later on, when your project is bootstrapping you can let Reflections collect all those resources and re-create that metadata for you, making it available at runtime without re-scanning the classpath.

For Maven, see example using gmavenplus in the reflections-maven repository

Other use cases

See the UseCases wiki page

Contribute

Pull requests are welcomed!!

Apologize for not maintaining this repository continuously! We're looking for maintainers to assist in reviewing pull requests and managing releases, please reach out.

The license is WTFPL, just do what the fuck you want to.

This library is published as an act of giving and generosity, from developers to developers.

Please feel free to use it, and to contribute to the developers community in the same manner. Dāna Donate

Cheers

Versions

Version
0.9.11-h2o-custom