Class ReflectionTestUtils
- java.lang.Object
- org.springframework.test.util.ReflectionTestUtils
public abstract class ReflectionTestUtils extends Object
ReflectionTestUtilsis a collection of reflection-based utility methods for use in unit and integration testing scenarios.There are often times when it would be beneficial to be able to set a non-
publicfield, invoke a non-publicsetter method, or invoke a non-publicconfiguration or lifecycle callback method when testing code involving, for example:- ORM frameworks such as JPA and Hibernate which condone the usage of
privateorprotectedfield access as opposed topublicsetter methods for properties in a domain entity. - Spring's support for annotations such as
@Autowired,@Inject, and@Resourcewhich provides dependency injection forprivateorprotectedfields, setter methods, and configuration methods. - Use of annotations such as
@PostConstructand@PreDestroyfor lifecycle callback methods.
In addition, several methods in this class provide support for
staticfields — for example,setField(Class, String, Object),getField(Class, String), etc.- Since:
- 2.5
- Author:
- Sam Brannen, Juergen Hoeller
- See Also:
ReflectionUtils,AopTestUtils
- ORM frameworks such as JPA and Hibernate which condone the usage of
Constructor Summary
Constructors Constructor Description ReflectionTestUtils()
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ObjectgetField(Class<?> targetClass, String name)static ObjectgetField(Object targetObject, Class<?> targetClass, String name)static ObjectgetField(Object targetObject, String name)static ObjectinvokeGetterMethod(Object target, String name)Invoke the getter method with the givennameon the supplied target object with the suppliedvalue.static <T> TinvokeMethod(Object target, String name, Object... args)Invoke the method with the givennameon the supplied target object with the supplied arguments.static voidinvokeSetterMethod(Object target, String name, Object value)Invoke the setter method with the givennameon the supplied target object with the suppliedvalue.static voidinvokeSetterMethod(Object target, String name, Object value, Class<?> type)Invoke the setter method with the givennameon the supplied target object with the suppliedvalue.static voidsetField(Class<?> targetClass, String name, Object value)static voidsetField(Class<?> targetClass, String name, Object value, Class<?> type)static voidsetField(Object targetObject, Class<?> targetClass, String name, Object value, Class<?> type)Set the field with the givenname/typeon the providedtargetObject/targetClassto the suppliedvalue.static voidsetField(Object targetObject, String name, Object value)static voidsetField(Object targetObject, String name, Object value, Class<?> type)
Constructor Detail
ReflectionTestUtils
public ReflectionTestUtils()
Method Detail
setField
public static void setField(Object targetObject, String name, Object value)
Set the field with the givennameon the providedtargetObjectto the suppliedvalue.This method delegates to
setField(Object, String, Object, Class), supplyingnullfor thetypeargument.- Parameters:
targetObject- the target object on which to set the field; nevernullname- the name of the field to set; nevernullvalue- the value to set
setField
public static void setField(Object targetObject, String name, Object value, Class<?> type)
Set the field with the givenname/typeon the providedtargetObjectto the suppliedvalue.This method delegates to
setField(Object, Class, String, Object, Class), supplyingnullfor thetargetClassargument.- Parameters:
targetObject- the target object on which to set the field; nevernullname- the name of the field to set; may benulliftypeis specifiedvalue- the value to settype- the type of the field to set; may benullifnameis specified
setField
public static void setField(Class<?> targetClass, String name, Object value)
Set the static field with the givennameon the providedtargetClassto the suppliedvalue.This method delegates to
setField(Object, Class, String, Object, Class), supplyingnullfor thetargetObjectandtypearguments.- Parameters:
targetClass- the target class on which to set the static field; nevernullname- the name of the field to set; nevernullvalue- the value to set- Since:
- 4.2
setField
public static void setField(Class<?> targetClass, String name, Object value, Class<?> type)
Set the static field with the givenname/typeon the providedtargetClassto the suppliedvalue.This method delegates to
setField(Object, Class, String, Object, Class), supplyingnullfor thetargetObjectargument.- Parameters:
targetClass- the target class on which to set the static field; nevernullname- the name of the field to set; may benulliftypeis specifiedvalue- the value to settype- the type of the field to set; may benullifnameis specified- Since:
- 4.2
setField
public static void setField(Object targetObject, Class<?> targetClass, String name, Object value, Class<?> type)
Set the field with the givenname/typeon the providedtargetObject/targetClassto the suppliedvalue.If the supplied
targetObjectis a proxy, it will be unwrapped allowing the field to be set on the ultimate target of the proxy.This method traverses the class hierarchy in search of the desired field. In addition, an attempt will be made to make non-
publicfields accessible, thus allowing one to setprotected,private, and package-private fields.- Parameters:
targetObject- the target object on which to set the field; may benullif the field is statictargetClass- the target class on which to set the field; may benullif the field is an instance fieldname- the name of the field to set; may benulliftypeis specifiedvalue- the value to settype- the type of the field to set; may benullifnameis specified- Since:
- 4.2
- See Also:
ReflectionUtils.findField(Class, String, Class),ReflectionUtils.makeAccessible(Field),ReflectionUtils.setField(Field, Object, Object),AopTestUtils.getUltimateTargetObject(Object)
getField
public static Object getField(Object targetObject, String name)
Get the value of the field with the givennamefrom the providedtargetObject.This method delegates to
getField(Object, Class, String), supplyingnullfor thetargetClassargument.- Parameters:
targetObject- the target object from which to get the field; nevernullname- the name of the field to get; nevernull- Returns:
- the field's current value
- See Also:
getField(Class, String)
getField
public static Object getField(Class<?> targetClass, String name)
Get the value of the static field with the givennamefrom the providedtargetClass.This method delegates to
getField(Object, Class, String), supplyingnullfor thetargetObjectargument.- Parameters:
targetClass- the target class from which to get the static field; nevernullname- the name of the field to get; nevernull- Returns:
- the field's current value
- Since:
- 4.2
- See Also:
getField(Object, String)
getField
public static Object getField(Object targetObject, Class<?> targetClass, String name)
Get the value of the field with the givennamefrom the providedtargetObject/targetClass.If the supplied
targetObjectis a proxy, it will be unwrapped allowing the field to be retrieved from the ultimate target of the proxy.This method traverses the class hierarchy in search of the desired field. In addition, an attempt will be made to make non-
publicfields accessible, thus allowing one to getprotected,private, and package-private fields.- Parameters:
targetObject- the target object from which to get the field; may benullif the field is statictargetClass- the target class from which to get the field; may benullif the field is an instance fieldname- the name of the field to get; nevernull- Returns:
- the field's current value
- Since:
- 4.2
- See Also:
getField(Object, String),getField(Class, String),ReflectionUtils.findField(Class, String, Class),ReflectionUtils.makeAccessible(Field),ReflectionUtils.getField(Field, Object),AopTestUtils.getUltimateTargetObject(Object)
invokeSetterMethod
public static void invokeSetterMethod(Object target, String name, Object value)
Invoke the setter method with the givennameon the supplied target object with the suppliedvalue.This method traverses the class hierarchy in search of the desired method. In addition, an attempt will be made to make non-
publicmethods accessible, thus allowing one to invokeprotected,private, and package-private setter methods.In addition, this method supports JavaBean-style property names. For example, if you wish to set the
nameproperty on the target object, you may pass either "name" or "setName" as the method name.- Parameters:
target- the target object on which to invoke the specified setter methodname- the name of the setter method to invoke or the corresponding property namevalue- the value to provide to the setter method- See Also:
ReflectionUtils.findMethod(Class, String, Class[]),ReflectionUtils.makeAccessible(Method),ReflectionUtils.invokeMethod(Method, Object, Object[])
invokeSetterMethod
public static void invokeSetterMethod(Object target, String name, Object value, Class<?> type)
Invoke the setter method with the givennameon the supplied target object with the suppliedvalue.This method traverses the class hierarchy in search of the desired method. In addition, an attempt will be made to make non-
publicmethods accessible, thus allowing one to invokeprotected,private, and package-private setter methods.In addition, this method supports JavaBean-style property names. For example, if you wish to set the
nameproperty on the target object, you may pass either "name" or "setName" as the method name.- Parameters:
target- the target object on which to invoke the specified setter methodname- the name of the setter method to invoke or the corresponding property namevalue- the value to provide to the setter methodtype- the formal parameter type declared by the setter method- See Also:
ReflectionUtils.findMethod(Class, String, Class[]),ReflectionUtils.makeAccessible(Method),ReflectionUtils.invokeMethod(Method, Object, Object[])
invokeGetterMethod
public static Object invokeGetterMethod(Object target, String name)
Invoke the getter method with the givennameon the supplied target object with the suppliedvalue.This method traverses the class hierarchy in search of the desired method. In addition, an attempt will be made to make non-
publicmethods accessible, thus allowing one to invokeprotected,private, and package-private getter methods.In addition, this method supports JavaBean-style property names. For example, if you wish to get the
nameproperty on the target object, you may pass either "name" or "getName" as the method name.- Parameters:
target- the target object on which to invoke the specified getter methodname- the name of the getter method to invoke or the corresponding property name- Returns:
- the value returned from the invocation
- See Also:
ReflectionUtils.findMethod(Class, String, Class[]),ReflectionUtils.makeAccessible(Method),ReflectionUtils.invokeMethod(Method, Object, Object[])
invokeMethod
public static <T> T invokeMethod(Object target, String name, Object... args)
Invoke the method with the givennameon the supplied target object with the supplied arguments.This method traverses the class hierarchy in search of the desired method. In addition, an attempt will be made to make non-
publicmethods accessible, thus allowing one to invokeprotected,private, and package-private methods.- Parameters:
target- the target object on which to invoke the specified methodname- the name of the method to invokeargs- the arguments to provide to the method- Returns:
- the invocation result, if any
- See Also:
MethodInvoker,ReflectionUtils.makeAccessible(Method),ReflectionUtils.invokeMethod(Method, Object, Object[]),ReflectionUtils.handleReflectionException(Exception)