SpringBoot定义切面@Aspect时候 排除部分类

mac2024-07-27  59

// 定义切点Pointcut @Pointcut("execution(* com.hencego.web_service.web..*.*(..)) && !execution(* com.hencego.web_service.web.TestController.*(..)) ") public void excudeService() { }
最新回复(0)