解决tomcat8080端口占用问题
1. 使用管理员权限打开cmd
2. 输入 netstat -ano | findstr 8080 找出占用8080端口的进程pid
netstat -ano | findstr 8080
3. 输入指令结束进程 taskkill -pid 7244 -f
taskkill -pid 所占用程序pid -f
例如图中进程pid为2744 输入 taskkill -pid 2744 -f
4. 重启tomcat后再次打开即可出现主页
http://localhost:8080/