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
类似这种,链路中有用到线程池,怎么追踪整条链路
@RequestMapping("/service2") @ResponseBody public String service() throws Exception { Thread.sleep(100); Executors.newCachedThreadPool().submit(new Runnable() { @Override public void run() { HttpGet get = new HttpGet("http://localhost:8084/service4"); try { CloseableHttpResponse response = httpClient.execute(get); } catch (IOException e) { e.printStackTrace(); } } }); return "test"; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
类似这种,链路中有用到线程池,怎么追踪整条链路
The text was updated successfully, but these errors were encountered: