我在的代码是这样的。
<aop:config> <aop:aspect id="TestAspect" ref="aspectBean"> <!--配置com.spring.service包下所有类或接口的所有方法--> <aop:pointcut id="businessService" expression="execution(* com.catsic.business.**.action.*.*(..))" /> <aop:after pointcut-ref="businessService" method="doAfter"/> </aop:aspect> </aop:config> <bean id="aspectBean" class="com.catsic.framework.rzgl.RizhiGlAction" />
其中
<aop:pointcut id="businessService" expression="execution(* com.catsic.business.**.action.*.*(..))" />
这一块的代码因为只配置了一个切入点。而实际情况是action的目录参差不齐。我想配置多个切入点怎么办。