2010-05-25 SpringでAOPに複数のポイントカットを指定する Spring <aop:config> <aop:aspect ref="interceptor"> <aop:pointcut expression="execution(* xxx.xxx.*.update(..)) || execution(* xxx.xxx.*.add(..))" id="pointCut" /> <aop:around pointcut-ref="pointCut" method="aopMethod" /> </aop:aspect> </aop:config>