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

概述 springcloud 下,在feign添加了个调用另一个服务A的方法B的接口后,启动报错。 报错信息: The web application [a

概述

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注解了,加上就好了
在这里插入图片描述