Browse Source

Fix ampersands in AOP examples in documentation

pull/24666/head
Sviatoslav Hryb 6 years ago committed by Rossen Stoyanchev
parent
commit
f5195887c9
  1. 2
      src/docs/asciidoc/core/core-aop.adoc

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

@ -2069,7 +2069,7 @@ collects the `this` object as the join point context and passes it to the advice @@ -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"/>

Loading…
Cancel
Save