本文給出AOP經常使用技術和概念的知識點,思惟導圖繪製 摘自《架構探險》一書架構
思惟導圖spa
各加強類型所對應的解決方案接口
加強類型 | 基於AOP接口 | 基於AOP註解 | 基於<aop:config>配置 |
Before(前置加強) | MethodBeforeAdvice | @Before | <aop:before> |
After Advice(後置加強) | AfterReturningAdvice | @After | <aop:after> |
Around Advice(環繞加強) | MethodIntercepter | @Around | <aop:around> |
Throws Advice(拋出加強) | ThrowsAdvice | @AfterThrowing | <aop:after-throwing> |
Introduction(引入加強) | DelegatingIntroductionInterceptor | @DeclareParents | <aop:declare-parents> |