【解决】java.net.BindException Address already in use: NET_Bind
方法一:
1. 查看占用端口
netstat -ano|findstr 8080

有LISTENING说明存在端口为8080的应用程序
2. 查看进程号对应的应用
tasklist|findstr "36668"

3. 根据进程号杀死应用
taskkill /pid 36668 /f

方法二:
1. 查看占用的端口

netstat -ano|findstr "64222"

2. 任务管理器关闭占用的端口
