我有一个方面
@Aspect
@Slf4j
@Component
@AllArgsConstructor
public class ImportAspect {
@AfterReturning(pointcut = "@annotation(com.backend.annotations.Import)")
public void handleImport(JoinPoint joinPoint) throws Throwable {
//some logic
}
}
有没有一种方法,可能是通过beanpostprocessor标记另一个组件的类方法,该方法将由方面的方法处理?
暂无答案!
目前还没有任何答案,快来回答吧!