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