您好,欢迎来到微智科技网。
搜索
您的当前位置:首页Aspect的写法

Aspect的写法

来源:微智科技网

  

@Aspect
public class MyAspect {
 
//对应的方法为 public void haha(String name){...}
 @Before("execution(* com.wjh.business.MyBusiness.haha(..)) &&"+"args(name)")
 public void beforeServicePointcut5(String name) {
         .........
 }
 
// 对应的调法
// @MyAnnotation
//public void haha(String name) {...}
@Before("@annotation(com.wjh.annotation.MyAnnotation)")
 public void beforeServicePointcut2() {
  System.out.println("#####666666666666###########");
 }
 
//其他的合法调法
@Before("com.wjh.business.MyBusiness.haha(String)")
 public void beforeServicePointcut33() {
  System.out.println("###00000000002#########");
 }
 
 @Before("execution(* com.wjh.business.MyBusiness.haha())")
 public void beforeServicePointcut4() {
  System.out.println("########3333333333####");
 }
@Pointcut("execution(* com.wjh.business.MyBusiness.haha())")
 public void servicePointcut() {
 }
 @Before(value = "servicePointcut()")
 public void beforeServicePointcut6() {
  System.out.println("###11111111111#########");
 }
 
}



转载于:https://my.oschina.net/dyaod/blog/263333

因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- 7swz.com 版权所有 赣ICP备2024042798号-8

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务