首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

spring aop exepress execution注脚

2013-01-20 
spring aop exepress execution注解?AccountService接口定义的任意方法的执行:execution(* com.xyz.servic

spring aop exepress execution注解

?

    AccountService接口定义的任意方法的执行:
    execution(* com.xyz.service.AccountService.*(..))
  1. 在service包中定义的任意方法的执行:
    execution(* com.xyz.service.*.*(..))
  2. 在service包或其子包中定义的任意方法的执行:
    execution(* com.xyz.service..*.*(..))
    http://kaowww153.iteye.com/blog/603891

热点排行