百度已收录

新建一个bat批处理文件

@echo off
start javaw -jar XXX.jar
exit

指定配置文件的写法

@echo off
start javaw -jar -Dspring.config.location=C:\TestPlatform8083\application.properties C:\TestPlatform8083\TestPlatform-===.jar
exit

windows根据端口号查看进程

查看系统所有使用端口情况
netstat -ano

查看指定端口进程号
netstat -ano | findstr XXXX

查看指定进程号信息
tasklist | findstr XXXX

根据进程号杀掉进程
taskkill /f /t /im XXXX