我在eureka服务器上使用spring boot和underow。在我终止进程后,它告诉我在重新启动应用程序时端口正在使用。
我搜索并找到the server application won't release the port immediately after stopping . It will wait about 50s
。
有人建议添加REUSE选项:
setsockopt(listenfd,SOL_SOCKET,SO_REUSEADDR,&opt,sizeof(&opt));
我想知道在spring boot嵌入式容器中是否有办法解决这个问题。
感谢。