Spring AOP 中pointcut expression表达式解析及配置

Pointcut是指那些方法需要被执行”AOP”,是由”Pointcut Expression”来描述的. 

Pointcut可以有下列方式来定义或者通过&& || 和!的方式进行组合.

expression常用方法

    方法参数匹配
args()
@args()

    方法描述匹配
execution()

    当前AOP代理对象类型匹配
this()

    目标类匹配
target()
@target()
within()
@within()

    标有此注解的方法匹配
@annotation()

    其中execution 是用的最多的,其格式为:
execution(modifiers-pattern? ret-type-pattern declaring-type-pattern? name-pattern(param-pattern)throws-pattern?) 
returning type pattern,name pattern, and parameters pattern是必须的. 
ret-type-pattern:可以为*表示任何返回值,全路径的类名等. 
name-pattern:指定方法名, *代表所有 
set*代表以set开头的所有方法. 
parameters pattern:指定方法参数(声明的类型),(..)代表所有参数,(*)代表一个参数 
(*,String)代表第一个参数为任何值,第二个为String类型.

举例说明:

任意公共方法的执行:
execution(public * *(..))
任何一个以“set”开始的方法的执行:
execution(* set*(..))
AccountService 接口的任意方法的执行:
execution(* com.xyz.service.AccountService.*(..))
定义在service包里的任意方法的执行:
execution(* com.xyz.service.*.*(..))
定义在service包和所有子包里的任意类的任意方法的执行:
execution(* com.xyz.service..*.*(..))
定义在pointcutexp包和所有子包里的JoinPointObjP2类的任意方法的执行:
execution(* com.test.spring.aop.pointcutexp..JoinPointObjP2.*(..))")
***> 最靠近(..)的为方法名,靠近.*(..))的为类名或者接口名,如上例的JoinPointObjP2.*(..))

pointcutexp包里的任意类.
within(com.test.spring.aop.pointcutexp.*)
pointcutexp包和所有子包里的任意类.
within(com.test.spring.aop.pointcutexp..*)
实现了MyInterface接口的所有类,如果MyInterface不是接口,限定MyInterface单个类.
this(com.test.spring.aop.pointcutexp.MyInterface)
***> 当一个实现了接口的类被AOP的时候,用getBean方法必须cast为接口类型,不能为该类的类型.

带有@MyTypeAnnotation标注的所有类的任意方法.
@within(com.elong.annotation.MyTypeAnnotation)
@target(com.elong.annotation.MyTypeAnnotation)
带有@MyTypeAnnotation标注的任意方法.
@annotation(com.elong.annotation.MyTypeAnnotation)
***> @within和@target针对类的注解,@annotation是针对方法的注解

参数带有@MyMethodAnnotation标注的方法.
@args(com.elong.annotation.MyMethodAnnotation)
参数为String类型(运行是决定)的方法.
args(String)

配置Pointcut

  • 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"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/aop 
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd "
    default-autowire="byName">
    <bean id="ecoServiceInterceptor"  class="com.elong.eco.EcoServiceInterceptor"/>
    <aop:config>
       <aop:pointcut id="ecoPoint" expression="(execution(public * *..*.*(..))) && (@within(com.elong.eco.annotation.EcoExtension))"/>
       <aop:advisor pointcut-ref="ecoPoint" advice-ref="ecoServiceInterceptor"/>
    </aop:config>
</beans>
  • java注解
<?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"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/aop 
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd "
    default-autowire="byName">
    <!-- 自动扫描bean -->
    <context:component-scan base-package="com.elong.eco"/>
    <!-- 开启aop注解支持 -->
    <aop:aspectj-autoproxy/>
</beans>
package com.elong.eco;


import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
@Compoment
@Aspect
public class EcoServiceAspect {


    @Pointcut("(execution(public * *..*.*(..))) && (@within(com.elong.eco.annotation.EcoExtension))")
    public void ecoAnotationPoint() {
    }

    @Around("ecoAnotationPoint()")
    public Object around(ProceedingJoinPoint point) throws Throwable {
        // TODO something
        return point.proceed(); // 不调用point.proceed()不会执行目标方法
    }
}

转载:https://blog.csdn.net/qq525099302/article/details/53996344

更详细请查看:https://www.cnblogs.com/rainy-shurun/p/5195439.html

原文地址:https://www.cnblogs.com/cainiao-Shun666/p/9174473.html