一、首先在Springmvc.xml文件中引入如下内容(本示例是在ssm框架基础上实现的)
1、引入命名空间
xmlns:aop="http://www.springframework.org/schema/aop"
2、在xsi:schemaLocation中引入如下内容(注意看清自己的spring版本号)
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
3、在
<!-- 开启扫描包,需要去掉service层不进行扫描,避免事务失效 -->
<context:component-scan base-package="com.hp">
<!-- 配置不需要扫描 service层注解 -->
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
</context:component-scan>
<!-- 开启aop注解方式,此步骤s不能少,这样java类中的aop注解才会生效 -->
<aop:aspectj-autoproxy />
二、切面类
/**
* @Aspect 将此类声明为切面类
* @Component 将此类交由spring管理
* @author wsl
*
*/
@Component
@Aspect
public class MyAop {
/* * sayings()方法只是一个代理对象,个人理解就是将此方法加上
* @Pointcut 注解后 其他方法 只需要将value设为 此方法名即可 若有错误请指正
* @Pointcut 注解作用为定义切点 value值为准确切点位置 这里的意思是 com.hp.controller包下所有的方法 */
@Pointcut(value = "execution(* com.hp.controller..*.*(..))")
private void sayings() {}
long time = 0;
// 方法执行前执行 注意这里的value 是上面定义的代理对象 sayings()
@Before(value = "sayings()")
private void before() {
time = new Date().getTime();
System.out.println("方法执行前执行");
}
// 方法执行后执行
@After(value = "sayings()")
private void after() {
System.out.println("方法执行后执行,执行时间为" + (new Date().getTime() - time));
}
// 环绕通知。注意要有ProceedingJoinPoint参数传入。同时必须要有返回值,否者程序会中断执行,web应用中会报页面404;
@Around(value = "sayings()")
public Object sayAround(ProceedingJoinPoint pjp) {
Object proceed = null;
System.out.println("注解类型环绕通知..环绕前");
long time2 = new Date().getTime();
try {
proceed = pjp.proceed();
} catch (Throwable e) {
e.printStackTrace();
}
System.out.println("注解类型环绕通知..环绕后,执行时间" + (new Date().getTime() - time2));
return proceed;
}
}
三、关于 @Pointcut 注解的拓展
1、任何的Public方法
execution(public * *(..))
2、以set开头的方法
execution(* set*(..))
3、定义在com.hp.in接口中的方法
execution(* com.hp.in.*(..))
4、com.hp.wsl包中的所有方法
execution(* com.hp.wsl.*.*(..))
5、com.hp.wsl包及其子包中的所有方法
execution(* com.hp.wsl..*.*(..))
四、致谢
本文借鉴了:
trayvon 前辈的 《Spring AOP 之二:Pointcut注解表达式》 一文,原文地址:https://my.oschina.net/u/2474629/blog/1083448
小Cai先森 前辈的《spring中aop的注解实现方式简单实例》 一文,原文地址:https://www.cnblogs.com/caijh/p/7154691.html
如有不对的地方,谢谢指正;