join point 连接点,相当于sql中的一条记录
point cut 切点 ,相当于sql中的查询条件
advice 增强 , 织入的功能
{
1,method before advice 前置增强
2,after returning advice 后置增强
3,method interceptor 环绕增强(相当于方法拦截器)
4,throws advice 异常捕获增强
}
target 目标对象 ,advice织入的对象
introduction 引介
weaving 织入
proxy 代理
aspect 切面