Spring 2.0 + struts 1.2 如何用Spring拦截某些类中特定的方法

如题,我在网上有找过一些例子,但都是拦截一个类下面所有的方法,
我现在有各需求只要[size=large]拦截某个类中特定的方法[/size],而不是所有的方法!具体改如何实现。请达人给我帮助,最好能提供示例代码:)

用2.0的aspectj表达式
如:
[code="xml"]aop:config
expression="execution(** xxx.AbcService.add*(String))" />
order="0" />
/aop:config[/code]
拦截xxx.AbcService中add开头,参数为String的方法