Spring_day03_实例1:基于XML配置的AOP通知

项目组织结构如下:

Spring_day03_实例1:基于XML配置的AOP通知_第1张图片

一、pom依赖:

pom.xml



    4.0.0

    com.zl
    spring_day03_aop_xml
    1.0-SNAPSHOT
    jar

    
        
            org.springframework
            spring-context
            5.0.2.RELEASE
        

        
            junit
            junit
            4.12
        

        
            org.aspectj
            aspectjweaver
            1.8.13
        
    


二、Service层:

com.zl.service.AccountService接口:

package com.zl.service;

public interface AccountService {

    /**
     * 模拟保存账户
     */
    void saveAccount();

    /**
     * 模拟更新账户
     * @param i
     */
    void updateAccount(int i);

    /**
     * 删除账户
     * @return
     */
    int  deleteAccount();
}

com.zl.service.AccountServiceImpl实现类:

package com.zl.service.impl;

import com.zl.service.AccountService;

public class AccountServiceImpl implements AccountService {
    @Override
    public void saveAccount() {
        System.out.println("执行了保存");
//        int i = 1/0;
    }

    @Override
    public void updateAccount(int i) {
        System.out.println("执行了更新"+i);

    }

    @Override
    public int deleteAccount() {
        System.out.println("执行了删除");
        return 0;
    }
}

三、日志通知类:

com.zl.util.Logger日志通知类:

package com.zl.utils;

import org.aspectj.lang.ProceedingJoinPoint;

public class Logger {

    /**
     * 前置通知
     */
    public void beforePrintLog(){
        System.out.println("Logger类中的beforePrintLog方法执行了....前置通知");
    }
    /**
     * 后置通知
     */
    public void afterReturningPrintLog(){
        System.out.println("Logger类中的afterReturningPrintLog方法执行了....后置通知");
    }
    /**
     * 异常通知
     */
    public void afterThrowingPrintLog(){
        System.out.println("Logger类中的afterThrowingPrintLog方法执行了....异常通知");
    }
    /**
     * 最终通知
     */
    public void afterPrintLog(){
        System.out.println("Logger类中的afterPrintLog方法执行了....最终通知");
    }

    /**
     * 环绕通知
     * @return
     */
    public Object aroundPrintLog(ProceedingJoinPoint pjp){
        try {
            Object[] args = pjp.getArgs();
            System.out.println("Logger类中的aroundPrintLog方法执行了....前置通知");
            Object obj = pjp.proceed(args);
            System.out.println("Logger类中的aroundPrintLog方法执行了....后置通知");
            return obj;
        } catch (Throwable throwable) {
            System.out.println("Logger类中的aroundPrintLog方法执行了....异常通知");
            throwable.printStackTrace();
        }finally {
            System.out.println("Logger类中的aroundPrintLog方法执行了....最终通知");
        }
        return null;
    }
}

四、AOP主配置文件:

resources.bean.xml




     

    

    
        
        
        
            
            
            
            
            
            
            
            

            

        
    


需要注意的是:当我们使用环绕通知时,其他四个通知无法使用,否则反之。

五、测试类:

import com.zl.service.AccountService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class TestAop {

    public static void main(String[] args) {
        ApplicationContext app = new ClassPathXmlApplicationContext("bean.xml");
        AccountService accountService = app.getBean("accountService", AccountService.class);
        accountService.saveAccount();
    }
}

你可能感兴趣的:(Spring_day03_实例1:基于XML配置的AOP通知)