Springboot cannot start after defining aop

1.SpringBoot cannot start after defining aop

2. This is my code:
package com.rong360.crawler.meituan.aop;

import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;

/ *

  • intercepts requests from each controller interface and stores logs.

* /
@ Aspect
@ Component
public class MtReturnInterceptor {

Logger logger = LoggerFactory.getLogger(MtReturnInterceptor.class);

@Pointcut("execution(public * com.rong360.crawler.meituan.controller.*(..))")
private void controllerAspect() {
}

@AfterReturning(returning = "ret", pointcut = "controllerAspect()")
public void doAfterReturning(Object ret) throws Throwable {
    // 
    System.out.println(" : " + ret);
}

}

Mar.22,2021

cannot start is the application unable to start or aop intercept is not successful? And make the format better when asking questions. It's ugly.
your here

@Pointcut("execution(public * com.rong360.crawler.meituan.controller.*.*(..))")
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b46001-2c7cc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b46001-2c7cc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?