-
Notifications
You must be signed in to change notification settings - Fork 49
Spring AOP AspectJ @Around Annotation Example
Ramesh Fadatare edited this page May 17, 2019
·
1 revision
package net.guides.springboot2.springaop.aspect;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
/**
* Aspect for logging execution.
*
* @author Ramesh Fadatare
*
*/
@Aspect
@Component
public class LoggingAspect {
private final Logger LOGGER = LoggerFactory.getLogger(this.getClass());
@Around("execution(* net.guides.springboot2.springaop.service.EmployeeService.*(..))")
public void logAroundAllMethods(ProceedingJoinPoint joinPoint) throws Throwable {
LOGGER.debug("****LoggingAspect.logAroundAllMethods() : " + joinPoint.getSignature().getName() + ": Before Method Execution");
try {
joinPoint.proceed();
} finally {
//Do Something useful, If you have
}
LOGGER.debug("****LoggingAspect.logAroundAllMethods() : " + joinPoint.getSignature().getName() + ": After Method Execution");
}
@Around("execution(* net.guides.springboot2.springaop.service.EmployeeService.getEmployeeById(..))")
public void logAroundGetEmployee(ProceedingJoinPoint joinPoint) throws Throwable {
LOGGER.debug("****LoggingAspect.logAroundGetEmployee() : " + joinPoint.getSignature().getName() + ": Before Method Execution");
try {
joinPoint.proceed();
} finally {
//Do Something useful, If you have
}
LOGGER.debug("****LoggingAspect.logAroundGetEmployee() : " + joinPoint.getSignature().getName() + ": After Method Execution");
}
@Around("execution(* net.guides.springboot2.springaop.service.EmployeeService.addEmployee(..))")
public void logAroundAddEmployee(ProceedingJoinPoint joinPoint) throws Throwable {
LOGGER.debug("****LoggingAspect.logAroundAddEmployee() : " + joinPoint.getSignature().getName() + ": Before Method Execution");
try {
joinPoint.proceed();
} finally {
//Do Something useful, If you have
}
LOGGER.debug("****LoggingAspect.logAroundAddEmployee() : " + joinPoint.getSignature().getName() + ": After Method Execution");
}
}