1.利用jfinal极速开发时,显示异常,80端口被占用。
2.win+R输入cmd打开黑窗口。
netstat -ano | findstr 0.0.0.0:
3.发现进程被占用,输入以下指令停止http服务
net stop http
4.禁止服务的自启动。
sc config http start= disabled
5.再次运行jfinal,发现已成功运行。
Starting JFinal 1.8
Starting scanner at interval of seconds.
Starting web server on port:
Starting Complete. Welcome To The JFinal World :)