Bootstrap

Address localhost:1099 is already in use:tomcat频繁重启端口占用问题

错误提示

Unable to open debugger port (127.0.0.1:58198): java.net.SocketException "Socket closed"
Address localhost:1099 is already in use

端口被占用

报错原因

  1. 由于短时间内频繁运行tomcat服务器

  2. 为了避免出现这一错误。可以点击刷新uodate resources,在地址栏输入文件名的方式运行文件,进而显示页面。

解决

cmd命令

netstat -aon|findstr 1099   //找到端口
taskkill -f -pid 17600     //杀死

重启Tomcat

;