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
首先感谢您使用 DynamicTp,如果使用过程中有任何问题,请按照下述模板反馈问题,建议使用 Markdown 语法。
ExecutorService executor = (ExecutorService)ReflectionUtil.getFieldValue(AbstractConnectionFactory.class, "executorService", v); if (Objects.nonNull(executor) && executor instanceof ThreadPoolExecutor) { String tpName = this.genTpName(k); this.enhanceOriginExecutor(tpName, (ThreadPoolExecutor)executor, "executorService", v); } 通过反射拿到的executor为null,导致无法增强。 文字描述、截图、粘代码方式
The text was updated successfully, but these errors were encountered:
No branches or pull requests
首先感谢您使用 DynamicTp,如果使用过程中有任何问题,请按照下述模板反馈问题,建议使用 Markdown 语法。
版本信息
问题描述
ExecutorService executor = (ExecutorService)ReflectionUtil.getFieldValue(AbstractConnectionFactory.class, "executorService", v);
if (Objects.nonNull(executor) && executor instanceof ThreadPoolExecutor) {
String tpName = this.genTpName(k);
this.enhanceOriginExecutor(tpName, (ThreadPoolExecutor)executor, "executorService", v);
}
通过反射拿到的executor为null,导致无法增强。
文字描述、截图、粘代码方式
复现步骤
其他信息
The text was updated successfully, but these errors were encountered: