java框架學習日誌-9(Spring實現AOP)

先回憶織入的概念:把切面鏈接到到其餘的應用程序類型或者對象上,並建立一個被通知的對象。
通知類型:前置通知,後置通知,異常通知,最終通知,環繞通知。
咱們可使用spring來實現aop。java

第一種實現方式——經過springAPI來實現。


前置通知spring

能夠經過繼承 BeforeAdvice類,也能夠實現MethodBeforeAdvice接口
注意還須要導入兩個包
aspectjweaver,下載地址aspectjweaver
一個aopalliance,下載地址aopallianceexpress

下面的log這就至關於一個切面,能夠用來織入其餘應用程序或對象。ide

package log;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

public class Log implements MethodBeforeAdvice{
    @Override
    /**
     * @param method 被調用的方法對象
     * @param args 被調用的方法的參數
     * @param target 被調用方法的目標對象
     **/

    public void before(Method method, Object[] args, Object target) {
        System.out.println(target.getClass().getName()+"的"+method.getName());

    }
}

被被織入的對象的java代碼測試

package service;

public class ServiceImpl implements Service{
    @Override
    public void add() {
        System.out.println("增長用戶");
    }

    @Override
    public void update() {
        System.out.println("修改用戶");
    }

    @Override
    public void delete() {
        System.out.println("刪除用戶");
    }

    @Override
    public void search() {
        System.out.println("查詢用戶");
    }
}

而後須要聲明新的命名空間,配置一下beans文件,把目標(Serviceimpl)和切面(Log)都配置成單獨的bean,代碼以下3d

<?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-2.5.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
    <bean id="service" class="service.ServiceImpl"/>
    <bean id="log" class="log.Log"/>

</beans>

如今切面和目標對象之間尚未任何關係,按照之前的作法,就須要經過動態代理去織入,如今spring已經簡化了操做。代碼以下代理

<?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-2.5.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">

    <bean id="service" class="service.ServiceImpl"/>
    <bean id="log" class="log.Log"/>
    <aop:config>
        <aop:pointcut id="pointcut" expression="execution(* service.ServiceImpl.add())" />
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
    </aop:config>

</beans>

pointcut就是切入點。expression是一個表達式。至關於告訴spring,切面須要在切入到那些地方去執行。*表示全部返回值,由於add沒有參數,就寫add()。
advisor表示用哪些公共的業務。advice-ref是公共業務。 pointcut-ref是切入的地方。
寫好以後測試一下日誌

package test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import service.Service;

public class Test {
    public static void main(String[] args) {
        ApplicationContext ac=new ClassPathXmlApplicationContext("beans.xml");
        Service service=(Service)ac.getBean("service");
        service.add();
    }
}


日誌如今就成功加在add方法前面了。可是如今只是add方法前面加上日誌,也能夠改爲這個類的全部方法都加上日誌。*就表明全部。code

<aop:config>
        <aop:pointcut id="pointcut" expression="execution(* service.ServiceImpl.*())" />
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
    </aop:config>

測試一下

這是無參的方法。若是有有參的方法。加上..就至關於全部參數xml

<aop:config>
        <aop:pointcut id="pointcut" expression="execution(* service.ServiceImpl.*(..))" />
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
    </aop:config>

以此類推,若是須要全部類都加上log,就把類名改爲*

後置通知
實現接口AfterReturningAdvice,注意後置通知是目標方法執行後執行的通知

package log;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterLog implements AfterReturningAdvice{
    /**
     *
     * @param returnValue 返回值
     * @param method 目標方法
     * @param args 目標方法參數
     * @param target  目標方法的對象
     */
    @Override
    public void afterReturning(Object returnValue, Method method, Object[] args, Object target) {
        System.out.println(target.getClass().getName()+"的"+method.getName()+",返回"+returnValue);

    }
}

配置文件稍微改一下

<?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-2.5.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">

    <bean id="service" class="service.ServiceImpl"/>
    <bean id="log" class="log.Log"/>
    <bean id="afterlog" class="log.AfterLog"/>
    <aop:config>
        <aop:pointcut id="pointcut" expression="execution(* service.ServiceImpl.*(..))" />
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
        <aop:advisor advice-ref="afterlog" pointcut-ref="pointcut"/>
    </aop:config>

</beans>

其餘幾種通知都大同小異,就不寫了。

相關文章
相關標籤/搜索