
本文下載了winsw-2.3.0-bin.exe。
新建一個目錄aiplatformService
在目錄里面新建一個aiplatformService.xml,同時把winsw-2.3.0-bin.exe重命名陳aiplatformService.exe
必須這么做,否則無法安裝啟動服務。
編輯aiplatfomService.xml文件
<?xml version="1.0" encoding="utf-8" ?> <service> <id>aiPlat</id> <!-- must be unique --> <name>ai Platfrom Daemon</name> <description>ai平台演示程序</description> <executable>javaw</executable> <arguments>-jar "%BASE%\web-0.2.jar"</arguments> <logpath>%BASE%\log</logpath> <log mode="roll-by-time"> <pattern>yyyy-MM-dd</pattern> </log> </service>
在目錄中放入你的springboot項目,web-0.2.jar
在命令行 運行
安裝服務命令
aiPlatService.exe install
啟動服務
E:\aiplatformService>aiPlatService.exe stop
2019-09-05 15:59:31,974 INFO - Stopping the service with id 'aiPlat'
關閉服務
E:\aiplatformService>aiPlatService.exe start
2019-09-05 15:59:38,399 INFO - Starting the service with id 'aiPlat'
卸載服務命令
aiPlatService.exe uninstall
成功運行后如下

