使用winsw将spring-boot jar包注册成windows服务

背景:最近的项目中使用spring-boot,

 https://github.com/kohsuke/winsw/releases

 1 <service>
 2 
 3      <id>YJPSS</id>
 4 
 5      <name> YJPSS </name>
 6 
 7      <description>This is YJPSS service.</description>
 8 
 9      <!-- java环境变量 -->
10 
11      <env name="JAVA_HOME" value="%JAVA_HOME%"/>
12 
13      <executable>java</executable>
14 
15     <arguments>-jar "F:\test\YJPSS.jar"</arguments>
16 
17      <!-- 开机启动 -->
18 
19      <startmode>Automatic</startmode>
20 
21      <!-- 日志配置 -->
22 
23      <logpath>%BASE%\log</logpath>
24 
25      <logmode>rotate</logmode>
26 
27  </service>

猜你喜欢

转载自www.cnblogs.com/yizhiwoniua/p/10116270.html