META-INF.aop.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsl2.nano.incubation Show documentation
Show all versions of tsl2.nano.incubation Show documentation
TSL2 Framework Incubations (currently: Attach Agents on Runtime, SVGChart)
<?xml version="1.0" encoding="UTF-8"?> <aspectj> <aspects> <concrete-aspect name="tracer" extends="de.tsl2.nano.agent.LogMeAs"> <pointcut name="traceMethodAround" expression="execution(public * *.*(..))" /> <pointcut name="traceMethod" expression="execution(!public XXX *.*(..))" /> </concrete-aspect> </aspects> <!-- options="-verbose -showWeaveInfo" --> <weaver> <include within="*"/> <exclude within="*..Log*"/> <exclude within="com..*"/> <exclude within="org..*"/> <exclude within="sun..*"/> <exclude within="java..*"/> <dump within="*" beforeandafter="true"/> </weaver> </aspectj>