首先 在application.xml 配置
<context:annotation-config /><!-- 开启注释配置 -->
<aop:aspectj-autoproxy /><!-- 开启切面自动代理 -->
并且需要 aop的命名空间
xmlns:aop="http://www.springframework.org/schema/aop"
下面是切面处理的类 需要的jar(aspectjrt-1.7.0.jar,aspectjweaver-1.7.3.jar,aopalliance-1.0.jar还有就是spring的aop了)
package com.epdc.common.proxy;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
/**
*
* 通过aop拦截后执行具体操作
*/
@Aspect
@Component
public class LogIntercept {
@Pointcut("execution(public * com.epdc.service.ProxyService.proxyService(String,int))") //被拦截的方法
public void proxyService(){
}
@Before("proxyService()")
public void before() {
this.printLog("@Before 方法执行前");
}
@Around("proxyService()")
public void around(ProceedingJoinPoint pjp) throws Throwable{
this.printLog("@Around 方法执行前");
Object[] objects = pjp.getArgs();
for (int i = 0; i < objects.length; i++) {
System.out.println("方法参数"+objects[i]);
}
Object o = pjp.proceed();
System.out.println("返回的值"+(o==null));
this.printLog("@Around 方法执行后");
}
@After("proxyService()")
public void after() {
this.printLog("@After 方法执行后");
}
private void printLog(String str){
System.out.println(str);
}
}