码迷,mamicode.com
首页 > 编程语言 > 详细

峰Spring4学习(6)spring AOP的应用例子

时间:2017-05-25 10:07:49      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:ica   getbean   hid   spec   throws   poi   err   www   string   

一、AOP简介:

技术分享

二、AOP实例:

技术分享

三、使用的例子

需求:在student添加的前后,打印日志信息;

0)spring AOP需要引用的jar包:

技术分享

 

1)StudentService.java接口:

技术分享
package com.cy.service;

public interface StudentService {
    public void addStudent(String name);
}
View Code

2)StudentServiceImpl.java实现类:

技术分享
package com.cy.service.impl;

import com.cy.service.StudentService;

public class StudentServiceImpl implements StudentService {

    @Override
    public void addStudent(String name) {
        System.out.println("添加学生"+name);
    }

}
View Code

3)StudentServiceAspect.java切面类:

package com.cy.advice;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;

public class StudentServiceAspect {
    
    //前置通知,方法执行之前
    public void doBefore(JoinPoint jp){
        System.out.println("类名:" + jp.getTarget().getClass().getName());
        System.out.println("方法名:" + jp.getSignature().getName());
        System.out.println("开始添加学生:" + jp.getArgs()[0]);
    }
    
    //后置通知 方法完成之后
    public void doAfter(JoinPoint jp){
        System.out.println("类名:" + jp.getTarget().getClass().getName());
        System.out.println("方法名:" + jp.getSignature().getName());
        System.out.println("完成添加学生:" + jp.getArgs()[0]);
    }
    
    //环绕通知  可以在业务方法的前后添加逻辑
    public Object doAround(ProceedingJoinPoint pjp) throws Throwable{
        System.out.println("添加学生前");
        Object retVal = pjp.proceed();    //retVal为StudentServiceImpl.addStudent(String name)方法的返回值
                                          //因为返回值为void,所以console打印null
        System.out.println("添加学生后");
        System.out.println(retVal);
        return retVal;
    }
    
    //返回通知
    public void doAfterReturning(JoinPoint jp){
        System.out.println("返回通知");
    }
    
    //异常通知
    public void doAfterThrowing(JoinPoint jp, Throwable ex){
        System.out.println("异常通知");
        System.out.println("异常信息:" + ex.getMessage());
    }
}

4)beans.xml配置:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
                  http://www.springframework.org/schema/beans/spring-beans.xsd
                  http://www.springframework.org/schema/aop
                   http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
     
     <bean id="studentService" class="com.cy.service.impl.StudentServiceImpl"></bean>
     <bean id="studentServiceAspect" class="com.cy.advice.StudentServiceAspect"></bean>
     
     <aop:config>
         <aop:aspect id="studentServiceAspect" ref="studentServiceAspect">
             <aop:pointcut expression="execution(* com.cy.service..*.*(..))" id="businessService"/>
             <aop:before method="doBefore" pointcut-ref="businessService"/>
             <aop:after method="doAfter" pointcut-ref="businessService"/>
             <aop:around method="doAround" pointcut-ref="businessService"/>
             <aop:after-returning method="doAfterReturning" pointcut-ref="businessService"/>
             <aop:after-throwing method="doAfterThrowing" pointcut-ref="businessService" throwing="ex"/>
         </aop:aspect>
     </aop:config>
     
</beans>

5)测试代码:

技术分享
public class T {
    
    public static void main(String[] args) {
        ApplicationContext ac = new ClassPathXmlApplicationContext("beans.xml");
        StudentService studentService = (StudentService) ac.getBean("studentService");
        studentService.addStudent("张三");
    }
    
}
View Code

1)没有异常抛出时,没有异常通知;console打印:

技术分享

2)addStudent方法中构造异常,有异常通知,console打印:

StudentServiceImpl.java:

技术分享
package com.cy.service.impl;

import com.cy.service.StudentService;

public class StudentServiceImpl implements StudentService {

    @Override
    public void addStudent(String name) {
        System.out.println("添加学生"+name);
        System.out.println(1/0);
    }

}
View Code

 

技术分享

doAround方法中抛出异常是这句话:

技术分享--  Object retVal = pjp.proceed();

 

峰Spring4学习(6)spring AOP的应用例子

标签:ica   getbean   hid   spec   throws   poi   err   www   string   

原文地址:http://www.cnblogs.com/tenWood/p/6901785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!