
*
* @param joinPoint
*/
@Around("execution(* com.example.demo.controller..*.*(..))")
public Object around(ProceedingJoinPoint joinPoint) {
System.out.println("around before");
Object result = null;
try {
// System.out.println("around before");
//调用目标方法
result = joinPoint.proceed();
// System.out.println("around after");
} catch (Throwable e) {
e.printStackTrace();
} finally{
System