Phân tích mã nguồn Ctrip Apollo
Lựa chọn điểm cắt
// Định nghĩa điểm cắt
@Pointcut("execution(public * com.example.Repository+.*(..))")
public void repositoryMethods() {
}
// Sử dụng điểm cắt
@Around("repositoryMethods")
public Object execute(ProceedingJoinPoint joinPoint) throws Throwable {
return joinPoint.proceed();
}
AspectJ không phổ biến nhưn ...
Đăng vào ngày 29 tháng 7 lúc 08:13