All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mypackage.aspects.PrecedenceDeclaration Maven / Gradle / Ivy

Go to download

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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy