酒木君
这个是aop切入点,属性expression中可以有: execution表达式 , within 表达式 , this , target , args , 以及注解@target , @args , @annotation 等等, 楼主所用的是Spring ASP扩展的, 在AspectJ中无相应概念.以下是我总结归纳的所有表达式以及用法:execution(方法表达式)within(方法表达式)target(类权限定名)args(参数类型列表)@within(注解类全限定名)@target(注解类全限定名)@args(注解列表)@annotation(注解类型)bean(Bean id 或名字通配符)