1、問題描述:IDEA使用時,提示"8080端口被占用"
Description: The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured.
2、解決方法:
① 開始---->運行---->cmd(window+R組合鍵),調出命令窗口
② 輸入命令: netstat -aon|findstr 8080,可以看出占用端口的是PID為7324的進程
③ 輸入命令: taskkill /f /t /im 7324