Fix ampersands in AOP examples in documentation

This commit is contained in:
Sviatoslav Hryb 2020-03-07 21:40:46 +02:00 committed by Rossen Stoyanchev
parent 7ce22e2f3a
commit f5195887c9
1 changed files with 1 additions and 1 deletions

View File

@ -2069,7 +2069,7 @@ collects the `this` object as the join point context and passes it to the advice
<aop:aspect id="myAspect" ref="aBean">
<aop:pointcut id="businessService"
expression="execution(* com.xyz.myapp.service.*.*(..)) &amp;&amp; this(service)"/>
expression="execution(* com.xyz.myapp.service.*.*(..)) && this(service)"/>
<aop:before pointcut-ref="businessService" method="monitor"/>