一、加载路径中的通配符
(1)?(匹配单个字符)
(2)*(匹配除/外任意字符)
(3)**/(匹配任意多个目录)
示例:
(1)classpath:app-Beans.xml
说明:无通配符,必须完全匹配
(2)classpath:App?-Beans.xml
说明:匹配一个字符,例如 App1-Beans.xml 、 App2-Beans.xml
(3)classpath:user/*/Base-Beans.xml
说明:匹配零个或多个字符串(只针对名称,不匹配目录分隔符等),例如:user/a/Base-Beans.xml 、 user/b/Base-Beans.xml ,但是不匹配 user/Base-Beans.xml
(4)classpath:user/**/Base-Beans.xml
说明:匹配路径中的零个或多个目录,例如:user/a/ab/abc/Base-Beans.xml,同时也能匹配 user/Base-Beans.xml
(5)classpath:**/*-Beans.xml
说明:表示在所有的类路径中查找和加载文件名以“-Beans.xml”结尾的配置文件,但重复的文件名只加载其中一个,视加载顺序决定
(6)classpath*:user/**/*-Beans.xml
二、<context:component-scan base-package=" ">包扫描路径
(1)<context:component-scan base-package="com.*" />
(2)<context:component-scan base-package="com.*.dao" />
(3)<context:component-scan base-package="com.**.dao" />
说明:“**”标示不确定层包通配,即只扫描dao包(中间有不确定层包)
(4)<context:component-scan base-package="com.*dao" />
说明:“*dao”以dao结尾的包通配,即只扫描以“dao”结尾的包
三、Spring AOP配置通配符
execution
切入点指示符。执行表达式的格式如下:
execution(modifiers-pattern? ret-type-pattern declaring-type-pattern? name-pattern(param-pattern) throws-pattern?)
*
,它代表了匹配任意的返回类型。 一个全限定的类型名将只会匹配返回给定类型的方法。
*
通配符作为所有或者部分命名模式。
()
匹配了一个不接受任何参数的方法, 而(..)
匹配了一个接受任意数量参数的方法(零或者更多)。 模式(*)
匹配了一个接受一个任何类型的参数的方法。 模式(*,String)
匹配了一个接受两个参数的方法,第一个可以是任意类型, 第二个则必须是String类型。更多的信息请参阅AspectJ编程指南中
语言语义的部分。
下面给出一些通用切入点表达式的例子。
(1)任意公共方法的执行:
execution(public * *(..))
(2)任何一个名字以“set”开始的方法的执行:
execution(* set*(..))
(3)AccountService
接口定义的任意方法的执行:
execution(* com.xyz.service.AccountService.*(..))
(4)在service包中定义的任意方法的执行:
execution(* com.xyz.service.*.*(..))
(5)在service包或其子包中定义的任意方法的执行:
execution(* com.xyz.service..*.*(..))
(6)在service包中的任意连接点(在Spring AOP中只是方法执行):
within(com.xyz.service.*)
(7)在service包或其子包中的任意连接点(在Spring AOP中只是方法执行):
within(com.xyz.service..*)
(8)实现了AccountService
接口的代理对象的任意连接点 (在Spring AOP中只是方法执行):
this(com.xyz.service.AccountService)
AccountService
接口的目标对象的任意连接点 (在Spring AOP中只是方法执行):
target(com.xyz.service.AccountService)
Serializable
接口的连接点(在Spring AOP中只是方法执行)
args(java.io.Serializable)
'args'在绑定表单中更加常用:- 请参见后面的通知一节中了解如何使得方法参数在通知体内可用。
请注意在例子中给出的切入点不同于 execution(* *(java.io.Serializable))
: args版本只有在动态运行时候传入参数是Serializable时才匹配,而execution版本在方法签名中声明只有一个 Serializable
类型的参数时候匹配。
(11)目标对象中有一个 @Transactional
注解的任意连接点 (在Spring AOP中只是方法执行)
@target(org.springframework.transaction.annotation.Transactional)
@Transactional
注解的连接点 (在Spring AOP中只是方法执行):
@within(org.springframework.transaction.annotation.Transactional)
@Transactional
注解的连接点 (在Spring AOP中只是方法执行)
@annotation(org.springframework.transaction.annotation.Transactional)
@Classified
注解的连接点(在Spring AOP中只是方法执行)
@args(com.xyz.security.Classified)
'@args'在绑定表单中更加常用:- 请参见后面的通知一节中了解如何使得注解对象在通知体内可用。
(15)任何一个在名为'tradeService
'的Spring bean之上的连接点 (在Spring AOP中只是方法执行)。
bean(tradeService)
(16)任何一个在名字匹配通配符表达式'*Service
'的Spring bean之上的连接点 (在Spring AOP中只是方法执行)
bean(*Service)