joinPoint.proceed(joinPoint.getArgs())
时间: 2024-06-03 13:06:46 浏览: 162
Spring AOP demo
This is a method call for an aspect-oriented programming (AOP) framework, where a join point represents a specific point in the execution of a program, such as the execution of a method.
The `proceed` method is used to continue the execution of the program from the current join point. It takes the arguments passed to the method being intercepted as a parameter.
Overall, this line of code is used to continue the execution of a method that has been intercepted by an AOP framework, passing the original arguments to the method.
阅读全文