1.模拟业务层
@Service("accountService")
public class AccountServiceImpl implements IAccountService{
public void saveAccount() {
System.out.println("执行了保存");
}
}
新注解 Component 社么层都不属于的时候 使用 Aspect : 指定是一个切面 相当于xml中的 配置切面
@Component("logger")
@Aspect
public class Logger {
@Pointcut("execution(* com.wyc.service.impl.*.*(..))")
private void pt1(){}
@Before("pt1()")
public void beforePrintLog(){
System.out.println("前置通知Logger类中的beforePrintLog方法开始记录日志了。。。");
}
@AfterReturning("pt1()")
public void afterReturningPrintLog(){
System.out.println("后置通知Logger类中的afterReturningPrintLog方法开始记录日志了。。。");
}
@AfterThrowing("pt1()")
public void afterThrowingPrintLog(){
System.out.println("异常通知Logger类中的afterThrowingPrintLog方法开始记录日志了。。。");
}
@After("pt1()")
public void afterPrintLog(){
System.out.println("最终通知Logger类中的afterPrintLog方法开始记录日志了。。。");
}
xml配置
配置spring创建容器时要扫描的包
<context:component-scan base-package="com.wyc"></context:component-scan>
配置spring开启注解AOP的支持
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
测试类
public static void main(String[] args) {
1.获取容器
ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
IAccountService as = (IAccountService)ac.getBean("accountService");
3.执行方法
as.saveAccount();
}}
纯注解
@Configuration
@ComponentScan(basePackages = "com.wyc")
@EnableAspectJAutoProxy 表示开启 Aop注解配置
public class springConfig {
}
测试类
public static void main(String[] args) {
ApplicationContext ac = new AnnotationConfigApplicationContext(springConfig.class);
IAccountService as = (IAccountService)ac.getBean("accountService");
as.saveAccount();
}
}
运行顺序问题
最终通知总是在 异常通知 或 后置通知前 执行 解决方法 使用 环绕通知
@Component("logger")
@Aspect
public class Logger {
@Pointcut("execution(* com.wyc.service.impl.*.*(..))")
private void pt1(){}
@Around("pt1()")
public Object aroundPringLog(ProceedingJoinPoint pjp){
Object rtValue = null;
try{
Object[] args = pjp.getArgs();//得到方法执行所需的参数
System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。前置");
rtValue = pjp.proceed(args);//明确调用业务层方法(切入点方法)
System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。后置");
return rtValue;
}catch (Throwable t){
System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。异常");
throw new RuntimeException(t);
}finally {
System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。最终");}}}