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

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

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

 <service>

      <id>YJPSS</id>

      <name> YJPSS </name>

      <description>This is YJPSS service.</description>

      <!-- java环境变量 -->

      <env name="JAVA_HOME" value="%JAVA_HOME%"/>

      <executable>java</executable>

     <arguments>-jar "F:\test\YJPSS.jar"</arguments>

      <!-- 开机启动 -->

      <startmode>Automatic</startmode>

      <!-- 日志配置 -->

      <logpath>%BASE%\log</logpath>

      <logmode>rotate</logmode>

  </service>

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

05-04 00:39