public aspect LoggingAspect {
private pointcut logMethodExecution(): execution(public * com.example.*.*(..));
before(): logMethodExecution() {
System.out.println("Method execution started");
}
after(): logMethodExecution() {
System.out.println("Method execution completed");
}
}
bundle.aop.start=true