我第一次使用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" />
答案 0 :(得分:2)
刚刚提出:
@Around("execution(* com.test.model..*.*(..))")
执行表达式的格式为:
execution(modifiers-pattern? ret-type-pattern declaring-type-pattern? name-pattern(param-pattern) throws-pattern?)
只需要ret-type-pattern
,name-pattern
和param-pattern
,所以至少我们需要一个表达式:
execution(ret-type-pattern name-pattern(param-pattern))
ret-type-pattern
匹配任何*
name-pattern
与方法名称匹配,您可以使用*
作为通配符,使用..
来表示子包param-pattern
匹配方法参数(..)
以获取任意数量的参数您可以在此处找到更多信息:10. Aspect Oriented Programming with Spring,有一些有用的examples。