1. 下载
使用winsw将可执行程序注册为windows的系统服务。点击右侧release下载对应版本。
https://github.com/kohsuke/winsw
需要下载对应的exe可执行文件和xml模板
2. 编写配置文件
将下载的exe更名为你的服务名,如:MyAPP.exe。
打开sample-minimal.xml
<service>
<id>MyApp</id>
<name>MyApp</name>
<description>This service is a service </description>
<executable>java</executable>
<arguments>-jar "MyApp.jar"</arguments>
</service>
3. 打开cmd运行以下命令
安装服务
MyApp.exe install
启动服务
MyApp.exe start
停止服务
MyApp.exe stop
重启服务
MyApp.exe restart
卸载服务
MyApp.exe uninstall
查看服务状态
MyApp.exe status
标签:exe,服务,Windows,自启,MyApp,java,下载
From: https://www.cnblogs.com/jonil/p/17637926.html