1. 程式人生 > 其它 >在微服務環境下,遠端呼叫feign和非同步執行緒存在請求資料丟失問題

在微服務環境下,遠端呼叫feign和非同步執行緒存在請求資料丟失問題

RequestAttributes requestAttributes = RequestContextHolder.currentRequestAttributes();
            Thread thread=new Thread(()-> {
                RequestContextHolder.setRequestAttributes(requestAttributes, true);
                syncKjlInfoService.deleteBuilding(vo);

            });
            thread.
start();