本文介紹了如何創(chuàng)建切入點(diǎn)來(lái)偽裝支持接口繼承的客戶端?的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
在一個(gè)Spring Boot項(xiàng)目中,我有一個(gè)簡(jiǎn)單的假客戶端
@MyAnnotation
@FeignClient(name="some-name", url="http://test.url")
public interface MyClient {
@RequestMapping(method = RequestMethod.GET, value = "/endpoint")
List<Store> getSomething();
}
我需要攔截所有調(diào)用,為此,我正在創(chuàng)建一個(gè)可在不同項(xiàng)目中使用的公共庫(kù)。為了實(shí)現(xiàn)它,我嘗試使用了Spring AOP。我創(chuàng)建了一個(gè)方面,它包裝了用MyAnnotation
注釋的對(duì)象的所有公共方法
@Around("@within(MyAnnotation) && execution(public * *(..))")
public Object myWrapper(ProceedingJoinPoint invocation) throws Throwable {
// ...
}
它工作正常,所有調(diào)用都會(huì)被截獲,直到我嘗試將MyAnnotation
放在使用feign接口繼承的feign客戶端上。當(dāng)我使用繼承的接口調(diào)用初始化我的客戶端時(shí),不再被攔截。
public interface FeignClientInterface {
@RequestMapping(method = RequestMethod.GET, value = "/endpoint")
List<Store> getSomething();
}
@MyAnnotation
@FeignClient(name="some-name", url="http://test.url")
public interface MyClient extends FeignClientInterface{
}
我已嘗試:
"@target(MyAnnotation) && execution(public * *(..))"
但當(dāng)我將我的庫(kù)連接到實(shí)際項(xiàng)目時(shí),我得到了java.lang.IllegalArgumentException: Cannot subclass final class org.springframework.boot.autoconfigure.AutoConfigurationPackages$BasePackages
,它似乎想要將所有內(nèi)容包裝到代理,并且有最終的類。
"@target(MyAnnotation) && execution(public * com.my.company.base.package.*(..))"
刪除了上一個(gè)問(wèn)題,但給出了另一個(gè)問(wèn)題,如某些Bean沒(méi)有名稱無(wú)法實(shí)例化等。
問(wèn)題是如何在不將@MyAnnotation
移動(dòng)到基本接口FeignClientInterface
的情況下使其工作。它在另一個(gè)項(xiàng)目中,我無(wú)法控制它。
推薦答案
好的,經(jīng)過(guò)幾個(gè)小時(shí)的調(diào)查,我用這個(gè)替換了我的切入點(diǎn)
@Around("execution(* (@MyAnnotation *).*(..)) || execution(@MyAnnotation * *(..))")
如前所述here我使用execution
只是為了避免創(chuàng)建代理。
這篇關(guān)于如何創(chuàng)建切入點(diǎn)來(lái)偽裝支持接口繼承的客戶端?的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,