debug端口被占用了
查看占用端口进程的端口
netstat -ano|findstr "59480"
查看该端口进程
tasklist |findstr "2936"
杀死进程
taskkill -pid 2936 -f
Unable to open debugger port (127.0.0.1:59481): java.net.BindException "Address already in use: NET_Bind"
原文:https://www.cnblogs.com/xxzxxhh/p/15047700.html