일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 웹앱
- ipTIME
- 서버운영
- 웹 커리큘럼
- 공유기 서버
- reactor
- 웹 스터디
- Spring Batch
- reactor core
- reactive
- Spring Framework
- spring reactive
- Today
- Total
Hello World
Java Reflection Tutorial 본문
This tutorial is about reflection, the ability of a computer program to examine and modify the structure and behavior (specifically the values, meta-data, properties and functions) of the program at runtime.
We are going to explain what reflection is in general and how can be used in Java. Real uses cases about different reflection uses are listed in the next chapters.
Several code snippets will be shown; at the end of this article you can find a compressed file that contains all these examples (and some more).
All code has been written using Eclipse Luna 4.4 and Java update 8.25, no third party libraries are needed.
Table Of Contents
- 1. Reflection
- 2. Introduction to reflection in Java
- 3. Use cases
- 4. Reflection components and mechanisms
- 5. Classes
- 6. Interfaces
- 7. Enums
- 8. Primitive types
- 9. Fields
- 10. Methods
- 11. Constructors
- 12. Getters and Setters
- 13. Static elements
- 14. Arrays
- 15. Collections
- 16. Annotations
- 17. Generics
- 18. Class Loaders
- 19. Dynamic Proxies
- 20. Java 8 Reflection features
- 21. Summary
- 22. Download
- 23. Resources
1. Reflection
The concept of reflection in software means the ability to inspect, analyze and modify other code at runtime. For example imagine an application that takes as input some files containing source code (we do not care about what source code yet). The goal of this application is to count the number of methods that are contained in each passed class. This can be solved using reflection by analyzing the code and counting the elements which are actually methods, ignoring other kind of elements like attributes, interfaces, etc, and grouping them by classes.
Purely speaking, this example is not really reflection, because the code does not have to be analyzed at runtime and the task can be done in any other stage, but it can be also done at runtime and then we would be actually talking about reflection.
Another example would be an application that analyzes the content of given classes and executes the methods that contain a specific annotation with arguments provided in runtime: In the Java Junit framework we have for example the annotation
. This is actually what Junit does; and does it using reflection.2. Introduction to reflection in Java
In Java, it is possible to inspect fields, classes, methods, annotations, interfaces, etc. at runtime. You do not need to know how classes or methods are called, neither the parameters that are needed, all of that can be retrieved at runtime using reflection. It is also possible to instantiate new classes, to create new instances and to execute their methods, all of it using reflection.
Reflection is present in Java since the beginning of the times via its reflection API. The class contains all the reflection related methods that can be applied to classes and objects like the ones that allow a programmer to retrieve the class name, to retrieve the public methods of a class, etc. Other important classes are , and containing specific reflection methods that we are going to see in this tutorial.
Although reflection is very useful in many scenarios, it should not be used for everything. If some operation can be executed without using reflection, then we should not use it. Here are some reasons:
- The performance is affected by the use of reflection since all compilation optimizations cannot be applied: reflection is resolved at runtime and not at compile stages.
- Security vulnerabilities have to be taken into consideration since the use of reflection may not be possible when running in secure contexts like Applets.
- Another important disadvantage that is good to mention here is the maintenance of the code. If your code uses reflection heavily it is going to be more difficult to maintain. The classes and methods are not directly exposed in the code and may vary dynamically so it can get difficult to change the number of parameters that a method expects if the code that calls this method is invoked via reflection.
- Tools that automatically refactor or analyze the code may have trouble when a lot of reflection is present.
3. Use cases
Despite all the limitations, reflection is a very powerful tool in Java that can be taken into consideration in several scenarios.
In general, reflection can be used to observe and modify the behavior of a program at runtime. Here is a list with the most common use cases:
- IDEs can heavily make use of reflection in order to provide solutions for auto completion features, dynamic typing, hierarchy structures, etc. For example, IDEs like Eclipse or PHP Storm provide a mechanism to retrieve dynamically the arguments expected for a given method or a list of public methods starting by “get” for a given instance. All these are done using reflection.
- Debuggers use reflection to inspect dynamically the code that is being executed.
- Test tools like Junit or Mockito use reflection in order to invoke desired methods containing specific syntax or to mock specific classes, interfaces and methods.
- Dependency injection frameworks use reflection to inject beans and properties at runtime and initialize all the context of an application.
- Code analysis tools like PMD or Findbugs use reflection in order to analyze the code against the list of code violations that are currently configured.
- External tools that make use of the code dynamically may use reflection as well.
In this tutorial we are going to see several examples of use of reflection in Java. We will see how to get all methods for a given instance, without knowing what kind of class this instance is and we are going to invoke different methods depending on their syntax.
We are not just going to show what other tutorials do, but we will go one step forward by indicating how to proceed when using reflection with generics, annotations, arrays, collections and other kind of objects. Finally we will explain the main new features coming out with Java 8 related to this topic.
4. Reflection components and mechanisms
In order to start coding and using reflection in Java we first have to explain a couple of concepts that may be relevant.
- in Java is a contract with the applications that may use them. Interfaces contain a list of methods that are exposed and that have to be implemented by the subclasses implementing these interfaces. Interfaces cannot be instantiated. Since Java 8 they can contain default method implementations although this is not the common use.
- is the implementation of a series of methods and the container of a series of properties. It can be instantiated.
- is an instance of a given class.
- is some code performing some actions. They have return types as outputs and input parameters.
- is a property of a class.
- are elements containing a set of predefined constants.
- element is an element that is only visible inside a class and cannot be accessed from outside. It can be a method, a field…
- elements are elements that belong to the class and not to a specific instance. Static elements can be fields used across all instances of a given class, methods that can be invoked without need to instantiate the class, etc. This is very interesting while using reflection since it is different to invoke a static method than a non static one where you need an instance of a class to execute it.
- is code Meta data informing about the code itself.
- is a group of elements, can be a List, a Map, a Queue, etc.
- is an object containing a fixed number of values. Its length is fixed and is specified on creation.
- is a class implementing a list of interfaces specified at runtime. They use the class . We will see this more in detail in the next chapters.
- is an object in charge of loading classes given the name of a class. In Java, every class provide methods to retrieve the class loader: .
- were introduced in java update 5. They offer compile time safety by indicating what type or sub types a collection is going to use. For example using generics you can prevent that an application using a list containing strings would try to add a Double to the list in compile time.
The different nature of these components is important in order to use reflection within them. Is not the same to try to invoke a private method than a public one; it is different to get an annotation name or an interface one, etc. We will see examples for all of these in the next chapters.
5. Classes
Everything in Java is about classes, reflection as well. Classes are the starting point when we talk about reflection. The class
contains several methods that allow programmers to retrieve information about classes and objects (and other elements) at runtime.In order to retrieve the class information from a single instance we can write (in this case, for the
class):Or directly from the class name without instantiation:
or using the
method:From a class object we can retrieve all kind of information like declared methods, constructors, visible fields, annotations, types…In this tutorial all these is explained in the following chapters.
It is also possible to check properties for a given class like for example if a class is a primitive, or an instance:
It is also possible to create new instances of a given class using the method
passing the right arguments:The
method can be used only when the class contains a public default constructor or a constructor without arguments, if this is not the case, this method cannot be used. In these cases where the method cannot be used the solution is to retrieve a proper constructor at runtime and create an instance using this constructor with the arguments that it is expecting. We will see in the chapter related to constructors.6. Interfaces
Interfaces are elements that cannot be instantiated and that contain the exposed methods that should be implemented by their subclasses. Related to reflection there is nothing special regarding interfaces.
Interfaces can be accessed like a class using their qualified name. All methods available for classes are available for interfaces as well. Here is an example of how to access interface class information at runtime:
Assuming that the
element is an interface.One obvious difference between classes and interfaces is that interfaces cannot be instantiated using reflection via the
method:The snippet above will throw an
at runtime. At compile time no error appears.7. Enums
Enums are special java types that allow variables to be a set of constants. These constants are predefined in the enum declaration:
Java contains several enums specific methods:
- : Returns true if the element is of the type enum. False otherwise
- : Gets all constants for the given element (which is an enum). In case the element is not an enum an exception is thrown.
- : Returns true in case the field used is an enum constant. False otherwise. Only applicable to fields.
We are going to see an example of how to use the main enum methods related to reflection. First of all we create an instance of the enum:
We can check if the element is an enum using the method
:In order to retrieve all the enum constants we can do something like the following using the method
:Finally we can check how to use the field related method
. First we retrieve all declared fields for the given class (we will see more in detail in the next chapters all methods related reflection utilities) and after that we can check if the field is an enum constant or not:The output of all these pieces of code will be something like the following:
The string http://docs.oracle.com/javase/tutorial/java/javaOO/enum.html.
refers to the internal enum values field. For more information about enums and how to handle them, please visit8. Primitive types
In Java, there are a couple of types that are handled differently because of its nature and behavior: when we are talking about reflection, primitive types like int, float, double, etc. can be accessed and used almost like any other classes.
Here are a couple of examples of how to use reflection when we are working with primitive types:
• It is possible to retrieve a class object from a primitive type as for any other non primitive type:
• But It is not possible to create new instances for primitive types using reflection:
• It is possible to check if a given class belongs to a primitive type or not using the method
:In this case an exception of the type
is going to be thrown.9. Fields
Class fields can be handled in runtime using reflection. Classes offer several methods to access their fields at runtime. The most important ones are:
• : It returns an array with all declared fields for the class. It returns all private fields as well.
• : It returns an array with all accessible fields for the class.
• : It returns a field with the name passed as parameter. It throws an exception if the field does not exist or is not accessible.
• : It returns a field with the given name, if the field does not exist it throws an exception.
These methods return an array of elements (or a single one) of the type . This class contains several interesting methods that can be used at runtime that allow a programmer to read the properties and the values of the specific field.
Here is a class that uses this functionality:
In the snippet shown above you can see that the
contains several methods to get the values of a given field like or type specific ones like . We also can see in the pasted code how we can change the way the visibility of a given field by using the method .This is not always possible and under specific conditions and environments may be prevented. However this allows us to make a private field accessible and access its value and properties via reflection. This is very useful in testing frameworks like
or .The output or the program would be:
10. Methods
In order to retrieve all visible methods for a given class we can do the following:
Using the method
We can also retrieve an specific method using its name and the type of the arguments he is expecting to receive, as an example:
For a given method (an instance of the type
), we can access all its properties. The following snippet shows a couple of them like name, default values, return type, modifiers, parameters, parameter types or the exceptions thrown, we can also check if a method is accessible or not:It is also possible to instantiate given methods for specific objects passing the arguments that we want, we should assure that the amount and type of the arguments is correct:
This last feature is very interesting when we want to execute specific methods at runtime under special circumstances. Also in the creation of Invocation handlers for dynamic proxies is very useful, we will see this point at the end of the tutorial.
11. Constructors
Constructors can be used via reflection as well. Like other class methods they can be retrieved in runtime and several properties can be analyzed and checked like the accessibility, the number of parameters, their types, etc.
In order to retrieve all visible constructors from a class, we can do something like:
In the snippet above we are retrieving all visible constructors. If we want to get all the constructors, including the private ones, we can do something like:
General information about constructors such as parameters, types, names, visibility, annotations associated, etc. can be retrieved in the following way:
Constructors can also be used to create new instances. This may be very useful in order to access private or not visible constructors. This should be done only under very special circumstances and depending on the system where the application is running may not work because of security reasons as explained at the beginning of this tutorial.
In order to create a new instance of a class using a specific constructor we can do something like the following:
In has to be taken into consideration that the amount of parameters and their type should match the constructor instance ones. Also the accessibility of the constructor has to be set to true in order to invoke it (if it was not accesible). This can be done in the same way as we did for class methods and fields.
12. Getters and Setters
Getters and setters are not different to any other class method inside a class. The main difference is that they are a standard way to access private fields.
Here is a description of both:
• Getters are used to retrieve the value of a private field inside a class. Its name starts with “get” and ends with the name of the property in camel case. They do not receive any parameter and their return type is the same than the property that they are returning. They are public.
• Setters are used to modify the value of a private field inside a class. Its name starts with “set” and ends with the name of the property in camel case. They receive one parameters of the same type than the property that they are modifying and they do not return any value (void). They are public.
For example, for the private property
we can have the getter and setter methods:Following these standards we can use reflection to access (read and modify) at runtime all the private properties of a class exposed via getters and setters. This mechanism is used by several known libraries like Spring Framework or Hibernate, where they expect classes to expose their properties using these kinds of methods.
Here is an example of how to use getters and setters using reflection:
Where the class
. looks like the following:The output will be something like:
13. Static elements
Static classes, methods and fields behave completely different than instance ones. The main reason is that they do not need to be instantiated or created before they are invoked. They can be used without previous instantiation.
This fact changes everything: static methods can be invoked without instantiating their container classes, static class fields are stateless (so thread safe), static elements are very useful in order to create singletons and factories… Summarizing, static elements are a very important mechanism in Java.
In this chapter we are going to show the main differences between static and instance elements in relation to reflection: How to create static elements at runtime and how to invoke them.
For example, for the next static inline class:
In order to retrieve static inline classes we have the following options:
The main difference is that the class is contained inside another class; this has nothing to do with reflection but with the nature of inline classes.
In order to get static methods from a class, there are no differences with the access to instance ones (this applies to fields as well):
In order to invoke static methods or fields we do not need to create or specify an instance of the class, since the method (or the field) belongs to the class itself, not to a single instance:
14. Arrays
The class
offers several functionalities for handling arrays; it includes various static reflective methods:•
• : Sets an element (passed index) of the given array with the object passed as argument.
• : Returns the length of the array as int.
• : Retrieves the element of the array positioned in the pased index. Returns an object.
• : Similar method for the primitive type int. Returns an int. There are methods available for all primitive types.
Here is an example of how we can use all these methods:
The output of the program above would be:
The output of the snippet above would be:
15. Collections
Collections do not have many remarkable specific features related to reflection. Here is an example of how we can handle collection based elements. As already said, there are not many differences to any other Java type.
The following method prints all the class names of all elements of a collection, it previously checks if the passed element is a collection instance or not:
In the code shown, reflection is just used to check the instance type passed as parameter and to retrieve the class names of the elements inside the collection. We can call this method in the following way using different elements (some are collection based, some not):
And we would get the following output:
16. Annotations
All annotations of a class, package, method, field, etc. can be retrieved using reflection. Annotations can be evaluated in runtime for each element and their values can be retrieved. The following snippet shows how to retrieve all annotations for a given class and how to print out their properties and values:
The following example explains how to check if an element (field, method, class…) is marked with an specific annotation or not:
These snippets may be applicable to methods, fields and all elements that can be annotated.
You can find a very good article and extensive tutorial about Java annotations with several examples related to Java reflection in the following link: http://www.javacodegeeks.com/2014/11/java-annotations-tutorial.html.
17. Generics
Generics were introduced in Java in the update 5 and since then are a very important feature that helps to maintain the code clean and more usable. Parameterized elements are not different than other elements in Java, so all the topics explained in this tutorial apply to these elements as well.
Java contains specific reflection mechanisms to handle generics as well.
• It is possible to check at runtime if a specific element (class, method or field) is parameterized or not.
• It is also possible to retrieve the parameters type using reflection as well.
Here is an example of how we can do this:
In the code listed above we can see that the main class related to reflection and generics is
and one of its most important methods .18. Class Loaders
Elements in Java are loaded using class loaders. Class loaders can be implemented by implementing the abstract class
. They provide functionalities to load classes using their names as parameters. A typical mechanism for loading classes is to find in the class path the file that belongs to the given name and open it converting it into a Java class. Every system (JVM) has a default one.In order to retrieve the systems default class loader we can do the following:
A programmer can also get the specific class loader used for loading a given class or instance. If nothing else is specified or configured, the default one is used. For example:
Using a class loader we can load classes at runtime passing as parameter the qualified name of a class, this name can be generated dynamically:
Another possibility is to to this using
method and specify the class loader that we want to use as parameter:For more information about class loaders in Java please visit the official API where you can find more information:https://docs.oracle.com/javase/7/docs/api/java/lansystemClassLoaderg/reflect/InvocationHandler.html
19. Dynamic Proxies
Dynamic proxies are classes that implement a list of interfaces specified at runtime, that is, specified when the class is created. We may have proxy interfaces, classes and instances as for any other java element.
Each instance of a proxy class contains an invocation handler object. An invocation handler object is an instance of a class that implements the interface
.When a proxy instance is used to invoke a given method, this one will be forwarded to the invoke method of the proxy instance invocation handler. The method (using reflection) and the expected arguments are passed to the invocation handler. The result of the original invocation is the returned result from the invocation handler. In order to explain that in an easier way we are going to show an example.
For more information about java dynamic proxies please visithttps://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Proxy.html.
In this tutorial we are going to show how to create a simple proxy class and how to redirect methods through the proxy and execute the desired actions using reflection.
The main example program would look like:
We can see that we have 3 main topics to explain here. The first one is the invocation handler; we need to create an instance of an invocation handler and implement there the actions that we should take when methods of the proxy are called and forwarded to it.
A new class implementing is created and the method is overriden:
Using reflection we can take the actions that we want in the
method.The next step is to create the proxy itself. We do this by using the invocation handler instance created before and the class (and its interface) that we want to proxy.
Once the proxy and invocation handler are created, we can start to use them. All methods of the proxy are going to be forwarded now to the invocation handler and will be handled there.
This is a very simple example of dynamic proxies in Java but it explains how reflection can be used in this scenario.
20. Java 8 Reflection features
There are not many changes and enhancements in Java 8 related to reflection. The most important one is the possibility to retrieve the method parameters with their proper names. Until now it was only possible to get the parameters with the names “arg0”, “arg1”, etc. This was kind of confusing and not that clean to work with.
Here is an example:
The mentioned method is
.It has to be mentioned that in order to get this feature working you need to compile your application with the javac argument -parameters:
Or using maven you should pass this parameter in the pom.xml file:
For those using Eclipse, it has to be mentioned that Eclipse does not use javac as compiler. At the moment of writing this article, the Eclipse compiler did not support this feature, so you need to compile your sources yourself using maven, ant or any other tool.
For the ones with big interest in Java 8 Lambdas here is a white paper with extensive information about the translation of java 8 Lambdas into “normal” java, reflection is involved: http://cr.openjdk.java.net/~briangoetz/lambda/lambda-translation.html.
Another interesting link about the use of the https://docs.oracle.com/javase/tutorial/reflect/member/methodparameterreflection.html.
in Java 8:21. Summary
So that’s it. In this tutorial we explained in detail what is software reflection, how it can be used in Java and under what circumstances should and should not be used.
Reflection is a mechanism that allows programmers to analyze, modify and invoke code at runtime without previously knowing exactly what code they are executing.
Different use cases and applications can fit for using reflection like auto completion features in IDEs, unit testing processors, dependency injection or code analysis tools. It can also be used in normal applications for specific tasks but it should be avoided if possible since the performance and the security of the code will be affected. The maintenance effort will be increased in case the source code contains a lot of reflection.
Reflection in Java can be used in classes, methods, packages, fields, interfaces, annotations, etc. Using reflection it is possible to create new instance of any kind of object at runtime and to check its properties and values.
Since Java 8 the method has been slightly modified and allows programmers to retrieve the actual names of method parameters, we explained this in the Java 8 related chapter.
The intention of this tutorial is to give an introduction and a deep overview of all the possibilities that Java offers in terms of reflection. For more specific tasks that may not be covered here, please refer to the links and resources section.
All examples shown in this tutorial can be downloaded in the download section.
22. Download
This was a tutorial on Java Reflection.
You can download the full source code of this tutorial here: java_reflection
23. Resources
Apart from all links listed in the article and all the examples shown, if you would like to have more theoretical information about reflection in Java you can visit:
• The reflection API. Oracle tutorial: http://docs.oracle.com/javase/tutorial/reflect/.
• Wikipedia article about reflection: http://en.wikipedia.org/wiki/Reflection_%28computer_programming%29
• The reflection API: http://docs.oracle.com/javase/8/docs/api/java/lang/reflect/package-summary.html
• Dynamic proxies: “http://docs.oracle.com/javase/8/docs/technotes/guides/reflection/proxy.html
• Enhancements in Java 8: http://docs.oracle.com/javase/8/docs/technotes/guides/reflection/enhancements.html#a8.
출처: http://www.javacodegeeks.com/2014/11/java-reflection-api-tutorial.html?utm_content=buffera8c08&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer
'Java > Core' 카테고리의 다른 글
Unirest for Java (0) | 2016.01.12 |
---|---|
자바 Primitive Type과 Boxed Primitives 둘 중 무엇을 사용할까? (0) | 2016.01.11 |
[펌]Java HashMap은 어떻게 동작하는가? (0) | 2016.01.10 |
[펌]람다가 이끌어 갈 모던 Java (0) | 2016.01.10 |
GC 를 통한 객체 소멸 시점 (0) | 2016.01.10 |