包中所有方法的AOP

时间:2015-09-28 06:05:42

标签: java spring aop

我第一次使用AOP。  我编写了下面的AOP代码,当我使用它来拦截特定的方法时它可以正常工作。

有人可以指导我 - 我如何设置它来拦截某个包中的所有方法(com.test.model)?

基本上如何设置appcontext.xml。

另外,在调用每个方法之前,我是否需要执行类似下面的操作?

AopClass aoptest = (AopClass) _applicationContext.getBean("AopClass");
aoptest.addCustomerAround("dummy");

有人可以帮忙吗?

如果需要更多解释,请告诉我。

以下是我的代码:

接口

package com.test.model;

import org.springframework.beans.factory.annotation.Autowired;

public interface AopInterface {


    @Autowired
    void addCustomerAround(String name);
}

类别:

package com.test.model;

import com.test.model.AopInterface;
import org.springframework.stereotype.Component;
import org.springframework.beans.factory.annotation.Autowired;

@Component
public class AopClass implements AopInterface {

    public void addCustomerAround(String name){
        System.out.println("addCustomerAround() is running, args : " + name);
    }
}

AOP:

package com.test.model;

import java.util.Arrays;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;



@Aspect
public class TestAdvice{


     @Around("execution(* com.test.model.AopInterface.addCustomerAround(..))")
       public void testAdvice(ProceedingJoinPoint joinPoint) throws Throwable {

        System.out.println("testAdvice() is running!");


       }
}

appcontext:

<!-- Aspect -->
    <aop:aspectj-autoproxy />
    <bean id="AopClass" class="com.test.model.AopClass" />
    <bean id="TestAdvice" class="com.test.model.TestAdvice" />

1 个答案:

答案 0 :(得分:2)

刚刚提出:

@Around("execution(* com.test.model..*.*(..))")

执行表达式的格式为:

execution(modifiers-pattern? ret-type-pattern declaring-type-pattern? name-pattern(param-pattern) throws-pattern?)

只需要ret-type-patternname-patternparam-pattern,所以至少我们需要一个表达式:

execution(ret-type-pattern name-pattern(param-pattern))
  • ret-type-pattern匹配任何
  • 的返回类型*
  • name-pattern与方法名称匹配,您可以使用*作为通配符,使用..来表示子包
  • param-pattern匹配方法参数(..)以获取任意数量的参数

您可以在此处找到更多信息:10. Aspect Oriented Programming with Spring,有一些有用的examples