Spring AOP: 织入的顺序

Spring AOP 采用和 AspectJ 一样的优先顺序来织入增强处理:在进入连接点时,高优先级的增强处理将先被织入;在退出连接点时,高优先级的增强处理会后被织入。
当不同的切面里的两个增强处理需要在同一个连接点被织入时,Spring AOP将以随机的顺序来织入这两个增强处理。如果应用需要指定不同切面类里增强处理的优先级,Spring提供了如下两种解决方案:
① 让切面类实现org.springframework.core.Ordered接口,实现该接口只需实现一个int getOrder( )方法,该方法返回值越小,则优先级越高。
② 直接使用@Order注解来修饰一个切面类,使用 @Order 时可指定一个int型的value属性,该属性值越小,则优先级越高。
这里写图片描述

Person.java :

public interface Person {  
    public void eat(String food);  
}  

Chinese.java :

@Component  
public class Chinese implements Person {  

    @Override  
    public void eat(String food) {  
        System.out.println("我正在吃:"+food);  
    }  

}  

AspectFirst.java :

import org.aspectj.lang.annotation.After;  
import org.aspectj.lang.annotation.Aspect;  
import org.aspectj.lang.annotation.Before;  
import org.springframework.core.annotation.Order;  

@Aspect  
@Order(5)  
public class AspectFirst {  

    @Before("execution(* com.bean.*.*(..))")  
    public void aspectFirstStart(){  
        System.out.println("@Before增强处理:我是AspectFirst切面,我的优先级为5");  
    }  

    @After("execution(* com.bean.*.*(..))")  
    public void aspectFirstEnd(){  
        System.out.println("@After增强处理:我是AspectFirst切面,我的优先级为5");  
    }  
}  

AspectSecond.java :

import org.aspectj.lang.annotation.After;  
import org.aspectj.lang.annotation.Aspect;  
import org.aspectj.lang.annotation.Before;  
import org.springframework.core.annotation.Order;  

@Aspect  
@Order(1)  
public class AspectSecond {  

    @Before("execution(* com.bean.*.*(..))")  
    public void aspectSecondStart(){  
        System.out.println("@Before增强处理:我是AspectSecond切面,我的优先级为1");  
    }  

    @After("execution(* com.bean.*.*(..))")  
    public void aspectSecondEnd(){  
        System.out.println("@After增强处理:我是AspectSecond切面,我的优先级为1");  
    }  
}  

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


    <context:component-scan base-package="com.bean">  
        <context:include-filter type="annotation"   
                 expression="org.aspectj.lang.annotation.Aspect"/>  
    </context:component-scan>  

    <aop:aspectj-autoproxy/>  

 </beans>  

Test.java

public class Test {  
    public static void main(String[] args) {  

        ApplicationContext ctx=new ClassPathXmlApplicationContext("bean.xml");  
        Person p=(Person) ctx.getBean("chinese");  
        p.eat("西瓜");  
    }  
}  

运行程序,控制台输出:
这里写图片描述
同一个切面类里的两个相同类型的增强处理在同一个连接点被织入时,Spring AOP将以随机顺序来织入这两个增强处理,没有办法指定它们的织入顺序。如果确实需要保证它们以固有的顺序被织入,则可考虑将多个增强处理压缩成一个,或者将不同增强处理重构到不同切面类中,通过在切面类级别上进行排序。

原文地址: http://blog.csdn.net/confirmAname/article/details/9739657

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值