Skip to content

Commit d1ab815

Browse files
Wang Xuesongsbrannen
authored andcommitted
[*.*] is displayed as [bold .] and needs to be escaped
execution(* com.xyz.service.*.*(..)) -> execution(* com.xyz.service.\*.*(..)) Closes gh-24108
1 parent fcbc437 commit d1ab815

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/docs/asciidoc/core/core-aop.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -739,14 +739,14 @@ The following examples show some common pointcut expressions:
739739
+
740740
[literal,subs="verbatim,quotes"]
741741
----
742-
execution(* com.xyz.service.*.*(..))
742+
execution(* com.xyz.service.\*.*(..))
743743
----
744744

745745
* The execution of any method defined in the service package or one of its sub-packages:
746746
+
747747
[literal,subs="verbatim,quotes"]
748748
----
749-
execution(* com.xyz.service..*.*(..))
749+
execution(* com.xyz.service..\*.*(..))
750750
----
751751

752752
* Any join point (method execution only in Spring AOP) within the service package:

0 commit comments

Comments
 (0)