一、问题形容
二、敞开端口
1.查找对应的端口占用的过程:netstat -aon|findstr "80" ,找到占用80端口对应的程序的PID号;
2.依据PID号找到对应的程序:tasklist|findstr "PID号" ,找到对应的程序名;
3.完结该过程:taskkill /f /t /im “程序名”;或者taskkill /pid 3672 /F。
三、批改程序中端口
application.properties文件中server.port
application.properties文件中server.port