Почему журналы AspectJ до и после не отслеживаются? - PullRequest
0 голосов
/ 30 мая 2019

Я хочу получить следы следующих журналов

{
    @Aspect    
    @Component    
    public class AspectJPay {

        private static final Logger log = LoggerFactory.getLogger(AxiPayCustomerController.class);

        @Before("execution(* lk.ideahub.symphony.controller.axipay.customer.AxiPayCustomerController.*(..))")
        public void logBefore(JoinPoint joinPoint) {
            Date date = new Date();
            String strDateFormat = "hh:mm:ss a";
            DateFormat dateFormat = new SimpleDateFormat(strDateFormat);
            String formattedDate = dateFormat.format(date);
            log.info("Current Start time Time is : {} {}", formattedDate, joinPoint.getSignature().getName());
            System.out.println("Current time of the day using Date - 12 hour format: " + formattedDate);
        }

        @After("execution(* lk.ideahub.symphony.controller.axipay.customer.AxiPayCustomerController.*(..))")
        public void logAfter(JoinPoint joinPoint) {
            Date date = new Date();
            String strDateFormat = "hh:mm:ss a";
            DateFormat dateFormat = new SimpleDateFormat(strDateFormat);
            String formattedDate = dateFormat.format(date);
            log.info("Current End Time is : {} {}", formattedDate, joinPoint.getSignature().getName());
            System.out.println("Current time of the day using Date - 12 hour format: " + formattedDate);
        }
    }
}

Но ни один из журналов не отслеживается. кто-нибудь знал, почему я не прав, или я хочу знать фактические зависимости gradle, которые хотят импортировать

Пожалуйста, помогите мне Спасибо.

...