面向切面编程AOP:基于XML文件的配置

除了使用AspectJ注解声明切面,Spring也支持在bean的配置文件中声明切面,这种声明是通过aop scheme中的XML元素完成的。

首先建立一个类:

package com.sevenhu.AOPTests;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Before;

import java.util.Arrays;

/**
 * Created by hu on 2016/4/1.
 */
public class AspectDemo1 {
    //前置通知
    @Before("execution(public int com.sevenhu.AOPTests.Calculator.*(int ,int ))")
    public void beforeMethod(JoinPoint joinPoint){
        String methodName=joinPoint.getSignature().getName();
        Object[] args=joinPoint.getArgs();
        System.out.println("The method "+methodName+" begins with "+ Arrays.asList(args));
    }
}

配置如下:

       <!--使AspesctJ的注解起作用-->
       <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
       <bean id="aspectDemo1" class="com.sevenhu.AOPTests.AspectDemo1"></bean>
       <aop:config>
              <aop:aspect id="aspect1" ref="aspectDemo1"></aop:aspect>
       </aop:config>

基于XML声明切入点:

       <!--使AspesctJ的注解起作用-->
       <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
       <bean id="aspectDemo1" class="com.sevenhu.AOPTests.AspectDemo1"></bean>
       <aop:config>
              <aop:pointcut id="cutExpression" expression="execution(* *.*(..))"/>
              <aop:aspect id="aspect1" ref="aspectDemo1"></aop:aspect>
       </aop:config>

声明通知的示例代码:

       <!--加入自动扫描的包-->
       <context:component-scan base-package="com.sevenhu.AOPTests"></context:component-scan>
       <!--使AspesctJ的注解起作用-->
       <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
       <bean id="aspectDemo1" class="com.sevenhu.AOPTests.AspectDemo1"></bean>
       <aop:config>
              <aop:pointcut id="cutExpression" expression="execution(* *.*(..))"/>
              <aop:aspect id="aspect1" ref="aspectDemo1">
                     <aop:before method="beforeMethod" pointcut-ref="cutExpression"></aop:before>
              </aop:aspect>
       </aop:config>

  

转载于:https://www.cnblogs.com/hujingwei/p/5344647.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值