问题描述 启动本地tomcat,发现tomcat的端口占用问题如下图所示: 原因分析: 端口被占用,需要找出占用端口的进程,然后杀死进程 解决方案: netstat -aon|findstr 1099 找到占用的进程 taskkill -f -pid 进程ID 杀死占用的进程 重启服务