huazx opened a new issue, #20666:
URL: https://github.com/apache/shardingsphere/issues/20666

   using ShardingSphere JDBC 5.1.2
   when i use @Aspect, the program start so slow
   
   
   @Aspect
   @Component
   public class AspectjLog {
       @Pointcut("execution(* 
org.apache.shardingsphere.example.core.mybatis.service.*.*(..))")
       public void chtrollerPict(){
       }
   
       @Around("chtrollerPict()")
       public Object around(ProceedingJoinPoint point) throws Throwable {
           return point.proceed();
       }
   }
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: 
[email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to