Skip to content

Commit

Permalink
[*.*] is displayed as [bold .] and needs to be escaped
Browse files Browse the repository at this point in the history
execution(* com.xyz.service.*.*(..))  ->  execution(* com.xyz.service.\*.*(..))

Closes gh-24108
  • Loading branch information
goribun authored and sbrannen committed Dec 2, 2019
1 parent fcbc437 commit d1ab815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/docs/asciidoc/core/core-aop.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -739,14 +739,14 @@ The following examples show some common pointcut expressions:
+
[literal,subs="verbatim,quotes"]
----
execution(* com.xyz.service.*.*(..))
execution(* com.xyz.service.\*.*(..))
----

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

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

0 comments on commit d1ab815

Please sign in to comment.