解决“8080端口“被占用问题

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,找出端口8080的PID是18328

解决“8080端口“被占用问题

③ 输入命令:  taskkill /f /t /im 18328