例えばとある@Around
を、特定の2クラスに対して指定したい場合、
||
で見慣れた書き方ができるよ
@Around("execution(* a.b.ClassName.*(..)) || execution(* x.y.ClassName.*(..))")
public void f() { ... }
Go to list of users who liked
More than 5 years have passed since last update.
例えばとある@Around
を、特定の2クラスに対して指定したい場合、
||
で見慣れた書き方ができるよ
@Around("execution(* a.b.ClassName.*(..)) || execution(* x.y.ClassName.*(..))")
public void f() { ... }
Register as a new user and use Qiita more conveniently
Go to list of users who liked