blob: 890bfc5e13da3a69458e04b527870319453f0694 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0" encoding="UTF-8"?>
<aspectj>
<aspects>
<concrete-aspect name="ConjuredUp">
<before pointcut="execution(* Hello2.say2(..)) AND args(w) " invokeClass="JavaHelper" invokeMethod="advice6(JoinPoint.StaticPart tjpsp, java.lang.String w)"/>
<after pointcut="execution(* Hello2.say2(..)) AND args(w) " invokeClass="JavaHelper" invokeMethod="advice7(JoinPoint.StaticPart tjpsp, java.lang.String w)"/>
</concrete-aspect>
</aspects>
<weaver options="-Xreweavable -verbose -XlazyTjp -showWeaveInfo">
<include within="Hello2"/>
<dump within="*"/>
</weaver>
</aspectj>
|