Spring Boot啟動指令碼

2022-08-01 04:48:13 字數 530 閱讀 2880

#!/bin/bash

#這裡可替換為你自己的執行程式,其他**無需更改

#使用說明,用來提示輸入引數

usage()

#檢查程式是否在執行

is_exist()" ]; then

return 1

else

return 0

fi}#啟動方法

start()

#停止方法

stop()

#輸出執行狀態

status()

#重啟restart()

#根據輸入引數,選擇執行對應方法,不輸入則執行使用說明

case "$1" in

"start")

start

;;"stop")

stop

;;"status")

status

;;"restart")

restart

;;*)

usage

;;esac

spring boot 啟動指令碼

bin bash 這裡可替換為你自己的執行程式,其他 無需更改 使用說明,用來提示輸入引數 usage 檢查程式是否在執行 is exist then return 1 else return 0 fi 啟動方法 start 停止方法 stop 輸出執行狀態 status 重啟restart 根據輸...

springboot在linux啟動指令碼

建立檔案 touch deploy.sh 1編寫deploy.sh bin bash 這裡可替換為你自己的執行程式,其他 無需更改 使用說明,用來提示輸入引數 usage 檢查程式是否在執行 is exist then return 1 else return 0 fi 啟動方法 start 停止方...

springboot 伺服器啟動指令碼例項

springboot 專案啟動服務指令碼例項 bin bash profile 1 if z profile then echo please input env profile.n usage 0 dev sit uat prd exit 1 ficd home fdm bin 獲取應用程序號 獲...