本文介紹了使用Spring AOP方面攔截方法?的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
我使用了Spring AOP來(lái)攔截這些方法。我在我的Spring配置文件中有以下配置。
<aop:aspectj-autoproxy />
特征類:
@Aspect
public class MyAspect{
@Around("execution(public * *(..))")
public Object doAction(ProceedingJoinPoint call) throws Throwable {
//somelogic
}
以上方法不攔截私有方法?我應(yīng)該怎么做才能讓方面同時(shí)攔截私有和公共方法?
推薦答案
私有方法不能被截獲,因?yàn)樗鼈儾荒芡ㄟ^(guò)代理調(diào)用。
但是,您可以使用原生AspectJ編織,正如您在以下頁(yè)面的8.8.4點(diǎn)上所看到的:
http://docs.spring.io/spring/docs/4.0.0.RELEASE/spring-framework-reference/html/aop.html#aop-pointcuts-designators
這篇關(guān)于使用Spring AOP方面攔截方法?的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,