1. 程式人生 > 其它 >The web application [admin] appears to have started a thread named [spring.cloud.inetutils] but has

The web application [admin] appears to have started a thread named [spring.cloud.inetutils] but has

概述

springcloud 下,在feign添加了個呼叫另一個服務A的方法B的介面後,啟動報錯。
報錯資訊:

The web application [admin] appears to have started a thread named [spring.cloud.inetutils] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:sun.misc.Unsafe.park(Native Method)

初步判斷是新增的介面寫法有誤。
feign類方法程式碼:

在這裡插入圖片描述
呼叫的服務A(訂單服務)方法程式碼:
在這裡插入圖片描述

原因與解決方法

檢查後發現是feign方法裡漏加@RequestParam註解了,加上就好了
在這裡插入圖片描述