springboot程序在windows上部署开机自启

1、下载 WinSW.NET4.exe (下载路径: https://github.com/kohsuke/winsw/releases )

springboot程序在windows上部署开机自启_第1张图片

 

2、将 WinSW.NET4.exe 复制到待部署的 jar 文件路径下,将 WinSW.NET4.exe 的文件名改为和 jar 文件一样

  例如: test-1.jar 对应的 exe文件名就是 test-1.exe

3、新建 xml 配置文件,xml的文件名也和 jar 的文件名相同,xml 的内容如下,这里假设我们要运行的 jar 文件就是 test-1.jar:

 

xml version="1.0" encoding="UTF-8"?>
<service>
    
    <id>test-1id>
    
    <name>test-1name>
    
    <description>This service runs test-1 continuous integration system.description>
    
    <executable>javaexecutable>
    <arguments>-Xrs -Xmx256m -jar "%BASE%\test-1.jar" --server.port=1009arguments>
    
    <logpath>%BASE%\loglogpath>
    <logmode>rotatelogmode>
service>

 

最终的三个文件为:

 

xxx.exe
xxx.jar
xxx.xml

 

4、注册服务,cmd 切换到 jar 文件路径,执行 xxx.exe install (如上述示例,这里就应该执行 test-1.exe install)

5、在服务列表中找到刚才的服务,启动即可,或者重启之后便自动会启动了。

6、如果要卸载服务,只需要在 cmd 运行: sc delete [服务名]

你可能感兴趣的:(springboot程序在windows上部署开机自启)