溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring實(shí)現(xiàn)類私有方法是什么意思

發(fā)布時(shí)間:2021-06-17 09:21:06 來源:億速云 閱讀:169 作者:chen 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“Spring實(shí)現(xiàn)類私有方法是什么意思”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

現(xiàn)實(shí)的業(yè)務(wù)場(chǎng)景中,可能需要對(duì)Spring的實(shí)現(xiàn)類的私有方法進(jìn)行測(cè)試。

場(chǎng)景描述:

比如XXXService里有 兩個(gè)函數(shù)a、函數(shù)b。

而實(shí)現(xiàn)類XXXServiceImpl中實(shí)現(xiàn)了函數(shù)a、函數(shù)b,還包含私有方法函數(shù)c和函數(shù)d。

要寫一個(gè)XXXTestController來調(diào)用XXXServiceImpl的函數(shù)c。

面臨幾個(gè)問題:

1、如果注入接口,則無法調(diào)用實(shí)現(xiàn)類的私有類。

2、如果注入實(shí)現(xiàn)類,則需要將實(shí)現(xiàn)類里的私有方法改為公有的,而且需要設(shè)置@EnableAspectJAutoProxy(proxyTargetClass = true)使用CGLIB代理方式

如果單純?yōu)榱藴y(cè)試而接口中定義實(shí)現(xiàn)類的私有方法或者為了測(cè)試而將私有方法臨時(shí)改為公有方法,顯然不太合適。

解決方案:

可以通過CGLIB注入實(shí)現(xiàn)類的子類,如果是Gradle項(xiàng)目也可以使用Aspect插件,將切面代碼在編譯器織入實(shí)現(xiàn)類中注入的類型則為實(shí)現(xiàn)類,然后通過反射設(shè)置為可訪問來調(diào)用私有方法。

方案一 使用BeanUtils.findDeclaredMethod反射方法

反射調(diào)用代碼:

BeanInvokeUtil

public class BeanInvokeUtil {
 
  public class InvokeParams {
 
// 方法名稱(私有)
    private String methodName;
 
// 參數(shù)列表類型數(shù)組
    private Class<?>[] paramTypes;
// 調(diào)用的對(duì)象
    private Object object;
 
// 參數(shù)列表數(shù)組(如果不為null,需要和paramTypes對(duì)應(yīng))
    private Object[] args;
 
    public InvokeParams() {
      super();
    }
 
    public InvokeParams(Object object, String methodName, Class<?>[] paramTypes, Object[] args) {
      this.methodName = methodName;
      this.paramTypes = paramTypes;
      this.object = object;
      this.args = args;
    }
 
    public String getMethodName() {
      return methodName;
    }
 
    public void setMethodName(String methodName) {
      this.methodName = methodName;
    }
 
    public Class<?>[] getParamTypes() {
      return paramTypes;
    }
 
    public void setParamTypes(Class<?>[] paramTypes) {
      this.paramTypes = paramTypes;
    }
 
    public Object getObject() {
      return object;
    }
 
    public void setObject(Object object) {
      this.object = object;
    }
 
    public Object[] getArgs() {
      return args;
    }
 
    public void setArgs(Object[] args) {
      this.args = args;
    }
  }
 
  public static Object invokePrivateMethod(InvokeParams invokeParams) throws InvocationTargetException, IllegalAccessException {
    // 參數(shù)檢查
    checkParams(invokeParams);
    // 調(diào)用
    return doInvoke(invokeParams);
  }
 
  private static Object doInvoke(InvokeParams invokeParams) throws InvocationTargetException, IllegalAccessException {
    Object object = invokeParams.getObject();
    String methodName = invokeParams.getMethodName();
    Class<?>[] paramTypes = invokeParams.getParamTypes();
    Object[] args = invokeParams.getArgs();
 
    Method method;
    if (paramTypes == null) {
      method = BeanUtils.findDeclaredMethod(object.getClass(), methodName);
    } else {
      method = BeanUtils.findDeclaredMethod(object.getClass(), methodName, paramTypes);
    }
    method.setAccessible(true);
    if (args == null) {
      return method.invoke(object);
    }
    return method.invoke(object, args);
 
  }
 
  private static void checkParams(InvokeParams invokeParams) {
    Object object = invokeParams.getObject();
    if (object == null) {
      throw new IllegalArgumentException("object can not be null");
    }
    String methodName = invokeParams.getMethodName();
    if (StringUtils.isEmpty(methodName)) {
      throw new IllegalArgumentException("methodName can not be empty");
    }
 
    // 參數(shù)類型數(shù)組和參數(shù)數(shù)組要對(duì)應(yīng)
    Class<?>[] paramTypes = invokeParams.getParamTypes();
    Object[] args = invokeParams.getArgs();
 
    boolean illegal = true;
    if (paramTypes == null && args != null) {
      illegal = false;
    }
    if (args == null && paramTypes != null) {
      illegal = false;
    }
    if (paramTypes != null && args != null && paramTypes.length != args.length) {
      illegal = false;
    }
    if (!illegal) {
      throw new IllegalArgumentException("paramTypes length != args length");
    }
  }
}

使用方式:

使用時(shí)通過CGLIB方式注入實(shí)現(xiàn)類或者將切面代碼編譯器織入實(shí)現(xiàn)類的方式,然后注入Bean。

@Autowired private XXXService xxxService;

然后填入調(diào)用的對(duì)象,待調(diào)用的私有方法,參數(shù)類型數(shù)組和參數(shù)數(shù)組。

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

注意這時(shí)注入的xxxService的類型為 xxxServiceImpl。

如果需要返回值,可以獲取該調(diào)用方法的返回值。

方案二:使用jdk和cglib工具獲取真實(shí)對(duì)象

測(cè)試類

public class Test {
  @Autowired
  ServiceImpl serviceImpl;

  @Test
  public void test() throws Exception {
  Class<?> clazz = Class.forName("ServiceImpl");
  Method method = clazz.getDeclaredMethod("MethodA");
  method.setAccessible(true);
  Object target = ReflectionUtil.getTarget(serviceImpl);
  // 注意,這里不能直接用serviceImpl,因?yàn)樗呀?jīng)被spring管理,
  // 變成serviceImpl真實(shí)實(shí)例的代理類,而代理類中并沒有私有方法,所以需要先獲取它的真實(shí)實(shí)例
  method.invoke(target);
  }
}

獲取spring 代理對(duì)象的真實(shí)實(shí)例的工具類,適用于兩種動(dòng)態(tài)代理情況:jdk和cglib

public class ReflectionUtil {
  /**
   * 獲取spring 代理對(duì)象的真實(shí)實(shí)例
   * @param proxy 代理對(duì)象
   * @return
   * @throws Exception
   */
  public static Object getTarget(Object proxy) throws Exception {
    if(!AopUtils.isAopProxy(proxy)) {
      return proxy;//不是代理對(duì)象
    }

    if(AopUtils.isJdkDynamicProxy(proxy)) {
      return getJdkDynamicProxyTargetObject(proxy);
    } else { //cglib
      return getCglibProxyTargetObject(proxy);
    }
  }

  private static Object getCglibProxyTargetObject(Object proxy) throws Exception {
    Field h = proxy.getClass().getDeclaredField("CGLIB$CALLBACK_0");
    h.setAccessible(true);
    Object dynamicAdvisedInterceptor = h.get(proxy);
    Field advised = dynamicAdvisedInterceptor.getClass().getDeclaredField("advised");
    advised.setAccessible(true);
    Object target = ((AdvisedSupport)advised.get(dynamicAdvisedInterceptor)).getTargetSource().getTarget();
    return target;
  }

  private static Object getJdkDynamicProxyTargetObject(Object proxy) throws Exception {
    Field h = proxy.getClass().getSuperclass().getDeclaredField("h");
    h.setAccessible(true);
    AopProxy aopProxy = (AopProxy) h.get(proxy);
    Field advised = aopProxy.getClass().getDeclaredField("advised");
    advised.setAccessible(true);
    Object target = ((AdvisedSupport)advised.get(aopProxy)).getTargetSource().getTarget();
    return target;
  }
}

另外還有一個(gè)更好的開源工具 PowerMock https://github.com/powermock/powermock,感興趣的同學(xué)可以研究一下

“Spring實(shí)現(xiàn)類私有方法是什么意思”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI