java - AspectJ not weaving all classes -
i using aspectj run time weaving. agent loading ok, finds aspect , aop file. classes aren't weaved although third party classes weaved.
this aop file
<aspectj> <weaver options="-showweaveinfo -debug"> <!-- weave classes in package --> <!--include within="*.*"/--> </weaver> <aspects> <aspect name="wf.core.aspects.loginfocalleraspect"></aspect> </aspects>
what causes this?
Comments
Post a Comment