We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
这种字节码增强的协程,对使用者的要求比较高。 1,foreach,手动挂起。 2,通过配置,告诉agent要修改spring-aop生成的类。 所以,你直接用虚拟线程就好了。jdk21之前就用kona,21和之后直接用jdk
Sorry, something went wrong.
No branches or pull requests
public Object process(ProceedingJoinPoint joinPoint, BizLog[] bizLogs) throws Throwable {
Context.setCurrent(new Context());
Object proceedResult = joinPoint.proceed();
List recordBizLogs = parseBizLog(joinPoint, proceedResult, bizLogs);
logger.bizLog(recordBizLogs);
return proceedResult;
}
The text was updated successfully, but these errors were encountered: