在Spring中创建切面,通过切面引入新功能-使用配置XML

个人博客

https://kongdada.github.io/
上一篇博客中记录了使用Java注解方式开发一个切面的小例子,这一篇记录使用XML配置的方式开发一个切面的例子,同时也完成通过配置XML新增功能。

实现切面

定义特定的方法
  • 首先定一个接口
package aopXML;

public interface Performance {
    void perform();
}
  • 实现这个接口,定义一个叫演出的方法
package aopXML;

public class PerformanceImpl implements Performance {
    @Override
    public void perform() {
        System.out.println("演出~~~");
    }
}
定义一个切面
package aopXML;

public class Audience {
    public void silencePhone() {
        System.out.println("手机静音!");
    }

    public void takeSeats() {
        System.out.println("请坐!");
    }

    public void applause() {
        System.out.println("表演结束,鼓掌!!!");
    }

    public void demanRefund() {
        System.out.println("表演失败,退票!!!");
    }
}
将切面跟特定方法联系起来

这一次采用配置XML的方式来开发;这个文件叫SpringAOP.xml
定义切点,其实就是指定那个特定方法
定义通知,其实就是通知对应的方法在特定方法前还是后调用,或者是特定方法调用成功或者出现异常




    
    

    
        
        
            
            
            
            
            
            
            
        
    


单元测试
package aopXML;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:SpringAOP.xml")
public class PerformanceTest {

    @Autowired
    private Performance performance;

    @Test
    public void test() {
        performance.perform();
    }
}

输出结果:

手机静音!
请坐!
演出~~~
表演结束,鼓掌!!!

新加功能

定义新加功能
  • 定义功能接口
package aopXML;

public interface Encoreable {
    void performEncore();
}
  • 实现功能
package aopXML;

public class EncoreableImpl implements Encoreable {
    @Override
    public void performEncore() {
        System.out.println("返场表演~~~");
    }
}
将新加的功能与特定方法联系起来

修改SpringAOP.xml




    
    
    

    
        
        
            
            
            
            
            
            
            
            
        
    


  • aop:declare-parents 使用这个标签将新加功能与特定方法联系在一起;
  • types-matching=“aopXML.Performance+” 为所有实现Performance接口的类的父类增加新功能;
  • implement-interface 新加功能对应着的接口;
  • default-impl 新加功能接口的实现;
单元测试
package aopXML;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:SpringAOP.xml")
public class PerformanceTest {

    @Autowired
    private Performance performance;

    @Test
    public void test() {
        performance.perform();
        System.out.println("+++++++++++++++++++++++++++++++++++");
        Encoreable encoreable = (Encoreable)performance;
        encoreable.performEncore();
    }

}

输出结果:

手机静音!
请坐!
演出~~~
表演结束,鼓掌!!!
+++++++++++++++++++++++++++++++++++
返场表演~~~

后记

  • 整个工程代码在下面的链接中,如果需要可以下载看一看。
  • 点击跳转到我的GitHub

你可能感兴趣的:(Spring)