基於配置的Spring AOP

前面幾篇學習了Spring的依賴注入,這篇開始學習另外一個核心功能——面向切面編程AOPhtml

  經過本文,你能夠了解到:java

  1 Spring xml規範spring

  2 經過配置文件實現面向切面編程express

  3 對比與傳統AOP編程編程

Spring的xml文件

  Spring的xml通常起名叫作bean.xml或者xxxapplication.xml這種,而後放在src下經過ClassPathXmlApplicationContext進行加載。文件的內容以下:app

<?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"
         xmlns:tx="http://www.springframework.org/schema/tx"
         xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"> 
    
    <bean id="audience"class="com.spring.test.aop.Audience"/>

    <aop:config>
    </aop:config>
</beans>

  最上面的是xml的編碼,這個就不解釋了。ide

  下面的<beans>是Spring的配置標籤,beans裏面幾個重要的屬性函數

  xmlns:學習

  是默認的xml文檔解析格式,即spring的beans。地址是http://www.springframework.org/schema/beans。測試

  經過設置這個屬性,全部在beans裏面聲明的屬性,能夠直接經過<>來使用,好比<bean>等等。

  xmlns:xsi:

  是xml須要遵照的規範,經過URL能夠看到,是w3的統一規範,後面經過xsi:schemaLocation來定位全部的解析文件。

  xmlns:aop:

  這個是重點,是咱們這裏須要使用到的一些語義規範,與面向切面AOP相關。

  xmlns:tx:

  Spring中與事務相關的配置內容。

  

  一個XML文件,只能聲明一個默認的語義解析的規範。

  例如上面的xml中就只有beans一個是默認的,其餘的都須要經過特定的標籤來使用,好比aop,它本身有不少的屬性,若是要使用,前面就必須加上aop:xxx才能夠。好比上面的aop:config。

  相似的,若是默認的xmlns配置的是aop相關的語義解析規範,那麼在xml中就能夠直接寫config這種標籤了。

 

基於配置的AOP編程過程

  首先,若是要在工程中使用AOP須要幾個jar包:

  1 Aop的核心包,即org.springframework.aop-xxx.jar

  2 Spring的聯盟包:aopalliance-1.0.jar

  3 aspectJ相關的jar包:aspectjrt.jar aspectjweaver.jar

  4 若是使用了動態代理,還須要添加cglib相關的jar包:cglib.zip

  首先須要一個AOP的切面類,用於定義各類響應事件

package com.spring.test.aop;

public class Audience {
    public void takeSeats(){
        System.out.println("The audience is taking their seats.");
    }
    public void turnOffCellPhones(){
        System.out.println("The audience is turning off their cellphones");
    }
    public void applaud(){
        System.out.println("CLAP CLAP CLAP");
    }
    public void demandRefund(){
        System.out.println("Boo! We want money back");
    }
}

  而後在bean.xml中編寫aop:config的相關內容:

...省略beans的定義內容

    <bean id="audience" class="com.spring.test.aop.Audience"/>
    
    <bean id="sax" class="com.spring.test.setter.Saxophone"/>
    <bean id="kenny" class="com.spring.test.setter.Instrumentalist">
         <property name="song" value="Jingle Bells" />
         <property name="age" value="25" />
         <property name="instrument" ref="sax"/>
    </bean>
    
    <aop:config proxy-target-class="true">
        <aop:aspect ref="audience">
            <aop:pointcut id="performance" expression="execution(* com.spring.test.action1.Performer.perform(..))"/>
            
            <aop:before pointcut-ref="performance" method="takeSeats"/>
            <aop:before pointcut-ref="performance" method="turnOffCellPhones"/>
            <aop:after-returning pointcut-ref="performance" method="applaud"/>
            <aop:after-throwing pointcut-ref="performance" method="demandRefund"/>
        </aop:aspect>
    </aop:config>
</beans>

  這裏面的aop:pointcut 就是使用AspectJ來定位的。意思是:當執行com.spring.test.action1.Performer的perform方法時,就會觸發該切面的事件響應。

  而Performer以及Instrumentalist等等的代碼,就在下面簡單的都羅列出來了:

  配置文件bean.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"
         xmlns:tx="http://www.springframework.org/schema/tx"
         xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"> 
    
    <bean id="audience" class="com.spring.test.aop.Audience"/>
    
    <bean id="sax" class="com.spring.test.setter.Saxophone"/>
    <bean id="kenny" class="com.spring.test.setter.Instrumentalist">
         <property name="song" value="Jingle Bells" />
         <property name="age" value="25" />
         <property name="instrument" ref="sax"/>
    </bean>
    
    <aop:config proxy-target-class="true">
        <aop:aspect ref="audience">
            <aop:pointcut id="performance" expression="execution(* com.spring.test.action1.Performer.perform(..))"/>
            
            <aop:before pointcut-ref="performance" method="takeSeats"/>
            <aop:before pointcut-ref="performance" method="turnOffCellPhones"/>
            <aop:after-returning pointcut-ref="performance" method="applaud"/>
            <aop:after-throwing pointcut-ref="performance" method="demandRefund"/>
        </aop:aspect>
    </aop:config>
</beans>
View Code

  表演者接口Performer.java

package com.spring.test.action1;

public interface Performer {
    void perform() throws PerformanceException;
}
View Code

  表演者實現類Instrumentalist.java

package com.spring.test.setter;

import com.spring.test.action1.PerformanceException;
import com.spring.test.action1.Performer;

public class Instrumentalist implements Performer{
    private String song;
    private int age;
    private Instrument instrument;
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }
    public String getSong() {
        return song;
    }
    public void setSong(String song) {
        this.song = song;
    }
    public Instrument getInstrument() {
        return instrument;
    }
    public void setInstrument(Instrument instrument) {
        this.instrument = instrument;
    }
    public Instrumentalist(){}
    public Instrumentalist(String song,int age,Instrument instrument){
        this.song = song;
        this.age = age;
        this.instrument = instrument;
    }
    public void perform() throws PerformanceException {
        System.out.println("Instrumentalist age:"+age);
        System.out.print("Playing "+song+":");
        instrument.play();
    }
}
View Code

  內部bean接口Instrument.java

package com.spring.test.setter;

public interface Instrument {
    public void play();
}
View Code

  內部bean實現類Saxophone.java

package com.spring.test.setter;

public class Saxophone implements Instrument {
    public Saxophone(){}
    public void play() {
        System.out.println("TOOT TOOT TOOT");
    }
}
View Code

  測試主函數main

package com.spring.test.setter;

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

import com.spring.test.action1.PerformanceException;

public class test {
    public static void main(String[] args) throws PerformanceException {
        ApplicationContext ctx = new ClassPathXmlApplicationContext("bean.xml");
        
        Instrumentalist performer = (Instrumentalist)ctx.getBean("kenny");
        performer.perform();
        
    }
}
View Code

  運行結果:

The audience is taking their seats.
The audience is turning off their cellphones
Instrumentalist age:25
Playing Jingle Bells:TOOT TOOT TOOT
CLAP CLAP CLAP

 

  經過這種聲明方式,能夠 快速的實現切點與切面的整合,成爲下面這種格式的新代碼:

class{
  try{  
  audience.takeSeats();    
  audience.turnOffCellphones();

  performance.perform();  

  audience.applaud();  
  }catch(Exception){
    audience.demandRefund();
  }   
}

  面向切面的好處,要在實際工做中多加領會才能夠,經常使用的場景就是日誌的記錄了。

 

與傳統的AOP編程相比

  前面也作過一個傳統的spring aop的實現方法:http://www.cnblogs.com/xing901022/p/4143696.html

  不得不說,經過ProxyFactoryBean達到的面向切面的編程,過於複雜,光是那幾個功能就要好好理解一番。

  而基於配置的AOP使用就要簡單的多,只須要一個切面的程序,而後經過配置文件就能夠徹底解耦的融入到切點中。

相關文章
相關標籤/搜索