add logging aspect + annotations
This commit is contained in:
62
src/main/java/mops/gruppen2/aspect/LogAspect.java
Normal file
62
src/main/java/mops/gruppen2/aspect/LogAspect.java
Normal file
@ -0,0 +1,62 @@
|
||||
package mops.gruppen2.aspect;
|
||||
|
||||
import lombok.extern.log4j.Log4j2;
|
||||
import mops.gruppen2.aspect.annotation.Trace;
|
||||
import org.aspectj.lang.JoinPoint;
|
||||
import org.aspectj.lang.ProceedingJoinPoint;
|
||||
import org.aspectj.lang.annotation.Around;
|
||||
import org.aspectj.lang.annotation.Aspect;
|
||||
import org.aspectj.lang.annotation.Before;
|
||||
import org.aspectj.lang.annotation.Pointcut;
|
||||
import org.aspectj.lang.reflect.MethodSignature;
|
||||
import org.springframework.context.annotation.Profile;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Log4j2
|
||||
@Profile("dev")
|
||||
@Aspect
|
||||
@Component
|
||||
public class LogAspect {
|
||||
|
||||
|
||||
// ######################################### POINTCUT ########################################
|
||||
|
||||
|
||||
@Pointcut("within(@mops.gruppen2.aspect.annotation.TraceMethodCalls *)")
|
||||
public void beanAnnotatedWithMonitor() {}
|
||||
|
||||
@Pointcut("execution(public * *(..))")
|
||||
public void publicMethod() {}
|
||||
|
||||
@Pointcut("publicMethod() && beanAnnotatedWithMonitor()")
|
||||
public void logMethodCalls() {}
|
||||
|
||||
|
||||
// ###################################### ANNOTATIONS ########################################
|
||||
|
||||
|
||||
@Before("@annotation(mops.gruppen2.aspect.annotation.Trace)")
|
||||
public void logCustom(JoinPoint joinPoint) {
|
||||
log.trace(((MethodSignature) joinPoint.getSignature()).getMethod().getAnnotation(Trace.class).value());
|
||||
}
|
||||
|
||||
@Before("@annotation(mops.gruppen2.aspect.annotation.TraceMethodCall) || logMethodCalls()")
|
||||
public void logMethodCall(JoinPoint joinPoint) {
|
||||
log.trace("Methodenaufruf: {} ({})",
|
||||
joinPoint.getSignature().getName(),
|
||||
joinPoint.getSourceLocation().getWithinType().getName().replace("mops.gruppen2.", ""));
|
||||
|
||||
System.out.println();
|
||||
}
|
||||
|
||||
@Around("@annotation(mops.gruppen2.aspect.annotation.TraceExecutionTime)")
|
||||
public Object logExecutionTime(ProceedingJoinPoint joinPoint) throws Throwable {
|
||||
long start = System.currentTimeMillis();
|
||||
joinPoint.proceed();
|
||||
long stop = System.currentTimeMillis();
|
||||
|
||||
log.trace("Ausführungsdauer: {} Millis", (stop - start));
|
||||
|
||||
return joinPoint.proceed();
|
||||
}
|
||||
}
|
16
src/main/java/mops/gruppen2/aspect/annotation/Trace.java
Normal file
16
src/main/java/mops/gruppen2/aspect/annotation/Trace.java
Normal file
@ -0,0 +1,16 @@
|
||||
package mops.gruppen2.aspect.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* Schreibt eine benutzerdefinierte Nachricht in den Trace-Stream bei Methodenaufruf
|
||||
*/
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface Trace {
|
||||
|
||||
String value();
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package mops.gruppen2.aspect.annotation;
|
||||
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* Schreibt die Methodenausführdauer in den Trace-Stream
|
||||
*/
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface TraceExecutionTime {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package mops.gruppen2.aspect.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* Schreibt eine Nachricht bei Methodenausführung in den Trace-Stream
|
||||
*/
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface TraceMethodCall {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package mops.gruppen2.aspect.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* Schreibt eine Nachricht für jede ausgeführte Methode einer Klasse in den Trace-Stream
|
||||
*/
|
||||
@Target(ElementType.TYPE)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface TraceMethodCalls {
|
||||
}
|
Reference in New Issue
Block a user