Winsw将.jar转为.exe

2020/10/1 exe

# 以hello-world.jar为例

  1. 下载WinSW-x64.exe 最新稳定版 (opens new window)

  2. 重命名WinSW-x64.exe为和.jar同名,hello-world.exe

  3. 新建.xml文件,和jar同名,hello-world.xml

    <service>
    	<id>HelloWorld</id>
    	<name>HelloWorld</name>
    	<description>Hello World服务</description>
    	<executable>java</executable>
    	<arguments>-jar "hello-world.jar" --spring.profiles.active=dev</arguments>
    	<logmode>rotate</logmode>
    </service>
    

    id和name都要是唯一的,一般同名即可

  4. 安装服务 image-20221115160239109 在cmd命令窗口输入hello-world.exe install (卸载命令为hello-world.exe uninstall)

  5. 启动服务

hello-world.exe start
其他命令:
	hello-world.exe restart
	hello-world.exe stop
	hello-world.exe status

结束后便能在服务中查看HelloWorld了 hello-world

Last Updated: 4/4/2024