目录
第一步:github上面下载winsw
下载地址:https://github.com/kohsuke/winsw/releases
第二步:复制文件到同一目录下
复制下载好的WinSW.NET4.exe、sample-minimal.xml、打包好的jar文件(helloworld.jar)
第三步:重命名WinSW.NET4.exe、sample-minimal.xml
WinSW.NET4.exe重名为helloworld.exe,sample-minimal.xml重名为helloworld.xml
第三步:编辑helloword.xml文件
<service>
<id>rcontrol</id>
<name>helloworld</name>
<description>This is HelloWorld service.</description>
<!-- java环境变量 -->
<env name="JAVA_HOME" value="%JAVA_HOME%"/>
<executable>java</executable>
<arguments>-jar "C:\work\start\helloworld.jar" --server.port=8080</arguments>
<!-- 开机启动 -->
<startmode>Automatic</startmode>
<!-- 日志配置 -->
<logpath>%BASE%\log</logpath>
<logmode>rotate</logmode>
</service>
第四步:添加/删除服务
命令行定位到当前文件下
helloworld.exe install 安装服务
sc delete helloword 删除服务