您好,登錄后才能下訂單哦!
本篇文章為大家展示了Spring AOP中什么是半注解和全注解模式,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
<bean id="logUtils" class="com.lagou.edu.utils.LogUtils"></bean> <aop:config> <aop:aspect id="logAspect" ref="logUtils"> </aop:aspect> </aop:config>
修改成以下注解
<!–切入點鎖定我們感興趣的方法,使用aspectj語法表達式–> <!–<aop:pointcut id="pt1" expression="execution(* *..*.*(..))"/>–>
<aop:pointcut id="pt1" expression="execution(* com.lagou.edu.service.impl.TransferServiceImpl.*(..))"/>
修改注解,加入一個空的方法
<!–方位信息,pointcut-ref關聯切入點–> <!–aop:before前置通知/增強–> <aop:before method="beforeMethod" pointcut-ref="pt1"/> <!–aop:after,最終通知,無論如何都執行–> <!–aop:after-returnning,正常執行通知–> <aop:after-returning method="successMethod" returning="retValue"/> <!–aop:after-throwing,異常通知–>
修改注解
aop:around method="arroundMethod" pointcut-ref="pt1"/>
把原來的xml配置注釋掉,只需在xml配置
<!--開啟aop注解驅動 proxy-target-class:true強制使用cglib --> <aop:aspectj-autoproxy/>
這是半注解模式,如果需要開啟全注解模式,
只需在配置類中加入@EnableAspectJAutoProxy //開啟spring對注解AOP的支持
上述內容就是Spring AOP中什么是半注解和全注解模式,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。