We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcbc437 commit d1ab815Copy full SHA for d1ab815
src/docs/asciidoc/core/core-aop.adoc
@@ -739,14 +739,14 @@ The following examples show some common pointcut expressions:
739
+
740
[literal,subs="verbatim,quotes"]
741
----
742
- execution(* com.xyz.service.*.*(..))
+ execution(* com.xyz.service.\*.*(..))
743
744
745
* The execution of any method defined in the service package or one of its sub-packages:
746
747
748
749
- execution(* com.xyz.service..*.*(..))
+ execution(* com.xyz.service..\*.*(..))
750
751
752
* Any join point (method execution only in Spring AOP) within the service package:
0 commit comments