com.mypackage.aspects.PrecedenceDeclaration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of helloworld_woven Show documentation
Show all versions of helloworld_woven Show documentation
Weave HelloWorld class with the automon aspect.
This is an example of compile time weaving.
The newest version!
package com.mypackage.aspects;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.DeclarePrecedence;
@Aspect
@DeclarePrecedence("ConcreteMonitoringAspect, RequestIdTrace, *")
public class PrecedenceDeclaration {
// The aspect body can be empty as its sole purpose is to declare precedence
}