现实的业务场景中,可能需要对Spring的实现类的私有方法进行测试。

场景描述:

比如XXXService里有 两个函数a、函数b。

而实现类XXXServiceImpl中实现了函数a、函数b,还包含私有方法函数c和函数d。

要写一个XXXTestController来调用XXXServiceImpl的函数c。

面临问题

1、如果注入接口,则无法调用实现类的私有类。

2、如果注入实现类,则需要将实现类里的私有方法改为公有的,而且需要设置@EnableAspectJAutoProxy(proxyTargetClass = true)使用CGLIB代理方式

如果单纯为了测试而接口中定义实现类的私有方法或者为了测试而将私有方法临时改为公有方法,显然不太合适。

解决方案

可以通过CGLIB注入实现类的子类,如果是Gradle项目也可以使用Aspect插件,将切面代码在编译器织入实现类中注入的类型则为实现类,然后通过反射设置为可访问来调用私有方法。

这里提供两个工具类

ReflectionUtil

使用jdk和cglib工具获取真实对象

测试类

  1. public class Test {
  2. @Autowired
  3. ServiceImpl serviceImpl;
  4. @Test
  5. public void test() throws Exception {
  6. Class<?> clazz = Class.forName("ServiceImpl");
  7. Method method = clazz.getDeclaredMethod("MethodA");
  8. method.setAccessible(true);
  9. Object target = ReflectionUtil.getTarget(serviceImpl);
  10. // 注意,这里不能直接用serviceImpl,因为它已经被spring管理,
  11. // 变成serviceImpl真实实例的代理类,而代理类中并没有私有方法,所以需要先获取它的真实实例
  12. method.invoke(target);
  13. }
  14. }

获取spring 代理对象的真实实例的工具类,适用于两种动态代理情况:jdk和cglib

  1. public class ReflectionUtil {
  2. /**
  3. * 获取spring 代理对象的真实实例
  4. * @param proxy 代理对象
  5. * @return
  6. * @throws Exception
  7. */
  8. public static Object getTarget(Object proxy) throws Exception {
  9. if(!AopUtils.isAopProxy(proxy)) {
  10. return proxy;//不是代理对象
  11. }
  12. if(AopUtils.isJdkDynamicProxy(proxy)) {
  13. return getJdkDynamicProxyTargetObject(proxy);
  14. } else { //cglib
  15. return getCglibProxyTargetObject(proxy);
  16. }
  17. }
  18. private static Object getCglibProxyTargetObject(Object proxy) throws Exception {
  19. Field h = proxy.getClass().getDeclaredField("CGLIB$CALLBACK_0");
  20. h.setAccessible(true);
  21. Object dynamicAdvisedInterceptor = h.get(proxy);
  22. Field advised = dynamicAdvisedInterceptor.getClass().getDeclaredField("advised");
  23. advised.setAccessible(true);
  24. Object target = ((AdvisedSupport)advised.get(dynamicAdvisedInterceptor)).getTargetSource().getTarget();
  25. return target;
  26. }
  27. private static Object getJdkDynamicProxyTargetObject(Object proxy) throws Exception {
  28. Field h = proxy.getClass().getSuperclass().getDeclaredField("h");
  29. h.setAccessible(true);
  30. AopProxy aopProxy = (AopProxy) h.get(proxy);
  31. Field advised = aopProxy.getClass().getDeclaredField("advised");
  32. advised.setAccessible(true);
  33. Object target = ((AdvisedSupport)advised.get(aopProxy)).getTargetSource().getTarget();
  34. return target;
  35. }
  36. }

BeanInvokeUtil

使用BeanUtils.findDeclaredMethod反射方法

  • 反射调用代码:BeanInvokeUtil
  1. public class BeanInvokeUtil {
  2. public static Object invokePrivateMethod(InvokeParams invokeParams) throws InvocationTargetException, IllegalAccessException {
  3. // 参数检查
  4. checkParams(invokeParams);
  5. // 调用
  6. return doInvoke(invokeParams);
  7. }
  8. private static Object doInvoke(InvokeParams invokeParams) throws InvocationTargetException, IllegalAccessException {
  9. Object object = invokeParams.getObject();
  10. String methodName = invokeParams.getMethodName();
  11. Class<?>[] paramTypes = invokeParams.getParamTypes();
  12. Object[] args = invokeParams.getArgs();
  13. Method method;
  14. if (paramTypes == null) {
  15. method = BeanUtils.findDeclaredMethod(object.getClass(), methodName);
  16. } else {
  17. method = BeanUtils.findDeclaredMethod(object.getClass(), methodName, paramTypes);
  18. }
  19. method.setAccessible(true);
  20. if (args == null) {
  21. return method.invoke(object);
  22. }
  23. return method.invoke(object, args);
  24. }
  25. private static void checkParams(InvokeParams invokeParams) {
  26. Object object = invokeParams.getObject();
  27. if (object == null) {
  28. throw new IllegalArgumentException("object can not be null");
  29. }
  30. String methodName = invokeParams.getMethodName();
  31. if (StringUtils.isEmpty(methodName)) {
  32. throw new IllegalArgumentException("methodName can not be empty");
  33. }
  34. // 参数类型数组和参数数组要对应
  35. Class<?>[] paramTypes = invokeParams.getParamTypes();
  36. Object[] args = invokeParams.getArgs();
  37. boolean illegal = true;
  38. if (paramTypes == null && args != null) {
  39. illegal = false;
  40. }
  41. if (args == null && paramTypes != null) {
  42. illegal = false;
  43. }
  44. if (paramTypes != null && args != null && paramTypes.length != args.length) {
  45. illegal = false;
  46. }
  47. if (!illegal) {
  48. throw new IllegalArgumentException("paramTypes length != args length");
  49. }
  50. }
  51. }
  1. public class InvokeParams {
  2. // 方法名称(私有)
  3. private String methodName;
  4. // 参数列表类型数组
  5. private Class<?>[] paramTypes;
  6. // 调用的对象
  7. private Object object;
  8. // 参数列表数组(如果不为null,需要和paramTypes对应)
  9. private Object[] args;
  10. public InvokeParams() {
  11. super();
  12. }
  13. public InvokeParams(Object object, String methodName, Class<?>[] paramTypes, Object[] args) {
  14. this.methodName = methodName;
  15. this.paramTypes = paramTypes;
  16. this.object = object;
  17. this.args = args;
  18. }
  19. public String getMethodName() {
  20. return methodName;
  21. }
  22. public void setMethodName(String methodName) {
  23. this.methodName = methodName;
  24. }
  25. public Class<?>[] getParamTypes() {
  26. return paramTypes;
  27. }
  28. public void setParamTypes(Class<?>[] paramTypes) {
  29. this.paramTypes = paramTypes;
  30. }
  31. public Object getObject() {
  32. return object;
  33. }
  34. public void setObject(Object object) {
  35. this.object = object;
  36. }
  37. public Object[] getArgs() {
  38. return args;
  39. }
  40. public void setArgs(Object[] args) {
  41. this.args = args;
  42. }
  43. }
  • 使用方式:

使用时通过CGLIB方式注入实现类或者将切面代码编译器织入实现类的方式,然后注入Bean。

  1. @Autowired private XXXService xxxService;

然后填入调用的对象,待调用的私有方法,参数类型数组和参数数组。

  1. BeanInvokeUtil.invokePrivateMethod(new InvokeParams(xxxService, "somePrivateMethod", null, null));

注意这时注入的xxxService的类型为 xxxServiceImpl。

如果需要返回值,可以获取该调用方法的返回值。

另外还有一个更好的开源工具 PowerMock https://github.com/powermock/powermock,感兴趣的同学可以研究一下