From d1ab81587ce1db25183a5f1955410417889d961d Mon Sep 17 00:00:00 2001 From: Wang Xuesong Date: Tue, 3 Dec 2019 02:14:18 +0800 Subject: [PATCH] [*.*] is displayed as [bold .] and needs to be escaped execution(* com.xyz.service.*.*(..)) -> execution(* com.xyz.service.\*.*(..)) Closes gh-24108 --- src/docs/asciidoc/core/core-aop.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/core/core-aop.adoc b/src/docs/asciidoc/core/core-aop.adoc index ba428d31ad..bc100f83e5 100644 --- a/src/docs/asciidoc/core/core-aop.adoc +++ b/src/docs/asciidoc/core/core-aop.adoc @@ -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: