Spring AOP Pointcut 複数指定JavaPointcutSpringsaiki2020年01月21日 11:36:05Spring AOP を利用すると,一括で前処理後処理できて便利だが, Pointcut式で条件を複数指定したいときには,||を使えば良い. @Around("execution(* com.abc.ClassNameA.*(..)) || execution(* com.abc.ClassNameB.*(..))") public void function(JoinPoint jp) { ... }