十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
最近在查询日志的时候,发现异步线程池里面执行的任务 没有打印公司自定义的 日志id
排查发现日志id是存在MDC中,创建新的线程的时候并未传递给子线程
查询文章发现spring可以使用线程装饰器解决,如下
@EnableAsync(proxyTargetClass = true)
@SpringBootApplication
public class Application extends AsyncConfigurerSupport { @Override
public Executor getAsyncExecutor() {ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setTaskDecorator(new MdcTaskDecorator()); //定义装饰器
executor.initialize();
return executor;
}
public static void main(String[] args) {SpringApplication.run(Application.class, args);
}
}
class MdcTaskDecorator implements TaskDecorator { @Override
public Runnable decorate(Runnable runnable) {// Right now: Web thread context !
// (Grab the current thread MDC data)
MapcontextMap = MDC.getCopyOfContextMap();
return () ->{ try {// Right now: @Async thread context !
// (Restore the Web thread context's MDC data)
MDC.setContextMap(contextMap);
runnable.run();
} finally {MDC.clear();
}
};
}
}
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧