Spring AOP 使用总结
摘要:
spring AOP 使用总结 第一种形式:基于注解(推荐)@Aspect@Componentpublic class MyAdvice{ @Pointcut(value="execution(* xxx.xxx.*(..))") public void myPointcut(){} //@Befo 阅读全文
posted @ 2017-03-08 21:58 LZHL 阅读(160) 评论(0) 推荐(0) 编辑