0
我使用AOP在我的應用程序,需要定義一個切入點, 我做的是帶彈簧的配置AOP切入點錯誤
<aop:aspect id="aspect" ref="loggerBean">
<aop:pointcut id="pointCut" expression="execution(public * *(..))" />
<aop:around pointcut="pointCut" method="logMethod" />
</aop:aspect>
,但我得到異常
Caused by: java.lang.IllegalArgumentException: Pointcut is not well-formed: expecting '(' at character position 0
pointCut
^
我我在這裏做錯了嗎?
在你的'aop:around''pointcut'應該是'pointcut-ref'。 –
我怎麼會錯過這樣一個愚蠢的觀點,我已經讓bean需要使用'ref',謝謝指出它。 – Vihar