-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added ajc compile time weaving for inner structure analysis
- Loading branch information
reiner_jung
committed
Mar 10, 2016
1 parent
e8f0ee8
commit f602dbd
Showing
6 changed files
with
257 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
cocome-maven-project/cloud-logic-service/cloud-logic-ejb/src/main/resources/META-INF/aop.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "./aspectj_1_5_0.dtd"> | ||
<aspectj> | ||
<weaver options="-verbose -showWeaveInfo"> | ||
<!-- Example instrumentation for the myBatis JPetStore --> | ||
<include within="cocome..*"/> | ||
<include within="org.cocome..*"/> | ||
<include within="javax.persistence..*"/> | ||
</weaver> | ||
<aspects> | ||
<!-- Use the aspect directives to specify the aspect(s) to use (typically only one). --> | ||
<!--<aspect name="kieker.monitoring.probe.aspectj.operationExecution.OperationExecutionAspectAnnotation"/>--> | ||
<!--<aspect name="kieker.monitoring.probe.aspectj.operationExecution.OperationExecutionAspectAnnotationServlet"/>--> | ||
<aspect name="kieker.monitoring.probe.aspectj.flow.operationExecutionObject.FullInstrumentation"/> | ||
<!--<aspect name="kieker.monitoring.probe.aspect.JoperationExecution.OperationExecutionAspectFullServlet"/>--> | ||
</aspects> | ||
</aspectj> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...en-project/cloud-logic-service/cloud-logic-webservice/src/main/resources/META-INF/aop.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "./aspectj_1_5_0.dtd"> | ||
<aspectj> | ||
<weaver options="-verbose -showWeaveInfo"> | ||
<!-- Example instrumentation for the myBatis JPetStore --> | ||
<include within="cocome..*"/> | ||
<include within="org.cocome..*"/> | ||
<include within="javax.persistence..*"/> | ||
</weaver> | ||
<aspects> | ||
<!-- Use the aspect directives to specify the aspect(s) to use (typically only one). --> | ||
<!--<aspect name="kieker.monitoring.probe.aspectj.operationExecution.OperationExecutionAspectAnnotation"/>--> | ||
<!--<aspect name="kieker.monitoring.probe.aspectj.operationExecution.OperationExecutionAspectAnnotationServlet"/>--> | ||
<aspect name="kieker.monitoring.probe.aspectj.flow.operationExecutionObject.FullInstrumentation"/> | ||
<!--<aspect name="kieker.monitoring.probe.aspect.JoperationExecution.OperationExecutionAspectFullServlet"/>--> | ||
</aspects> | ||
</aspectj> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
cocome-maven-project/cloud-web-frontend/src/main/resources/aop.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "./aspectj_1_5_0.dtd"> | ||
<aspectj> | ||
<weaver options="-verbose -showWeaveInfo"> | ||
<!-- Example instrumentation for the myBatis JPetStore --> | ||
<include within="cocome..*"/> | ||
<include within="org.cocome..*"/> | ||
<include within="javax.persistence..*"/> | ||
</weaver> | ||
<aspects> | ||
<!-- Use the aspect directives to specify the aspect(s) to use (typically only one). --> | ||
<!--<aspect name="kieker.monitoring.probe.aspectj.operationExecution.OperationExecutionAspectAnnotation"/>--> | ||
<!--<aspect name="kieker.monitoring.probe.aspectj.operationExecution.OperationExecutionAspectAnnotationServlet"/>--> | ||
<aspect name="kieker.monitoring.probe.aspectj.flow.operationExecutionObject.FullInstrumentation"/> | ||
<!--<aspect name="kieker.monitoring.probe.aspect.JoperationExecution.OperationExecutionAspectFullServlet"/>--> | ||
</aspects> | ||
</aspectj> |