AOP实现方式二:自定义(主要是切面定义)
execution(* com.faq.service.UserServiceImpl.*(..))"
表达式:
- execution():表达式主体
- 第一个*号:表示返回类型,星号表示所有的类型
- 包名:表示需要拦截的包名,可用…表示所有包
- 包后面是类名,也可以用*表示所有的类,此处只有UserServiceImpl一个类
- *(…)表示所有的方法名,后面括弧里面表示方法的参数,两个句点表示任何参数
package com.faq.diy;
public class DiyPointCut {
public void before(){
System.out.println("=========方法执行前===========");
}
public void after(){
System.out.println("=========方法执行后===========");
}
}
<!--方式二:自定义类-->
<bean id="diy" class="com.faq.diy.DiyPointCut"/>
<aop:config>
<!--自定义切面,ref要引用的类-->
<aop:aspect ref="diy">
<!--切入点-->
<aop:pointcut id="point" expression="execution(* com.faq.service.UserServiceImpl.*(..))"/>
<!---通知-->
<aop:before method="before" pointcut-ref="point"/>
<aop:after method="after" pointcut-ref="point"/>
</aop:aspect>
</aop:config>
测试和之前一样