我已经围绕类型编写了 spring aop 表达式,例如
@Around("execution(* com.mycomp.proj.parent.child1.*.*(..))
|| execution(* com.mycomp.proj.parent.child2.*.*(..))")
但是,如果新包将在 parent 下创建,则此表达式不会应用于新包(e.g.:com.mycomp.proj.parent.child3
)。如何开发包含这一点且不适用于直接位于父包中的类的表达式?(仅适用于所有子包中的类的表达式)