springboot应用的启动脚本

时间:2024-01-26 12:58:13



springboot应用的统一启动脚本

app.sh

#!/bin/bash
#替换这里jar包的路径,其它代码无需更改
APP_HOME=/root/APP
#APP_NAME=/root/APP/tongbujpa.jar
APP_PROGRAM=$1
APP_NAME=${APP_HOME}/${APP_PROGRAM}
APP_OPTS=" -Xms4096m -Xmx8192m -XX:MetaspaceSize=1024m -XX:MaxMetaspaceSize=2048m -XX:+UseG1GC"
# 启动环境
PROFILE_ACTIVE=$3


#使用说明,用来提示输入参数
usage() {
    echo "Usage: sh app.sh [start|stop|restart|status]"
    exit 1
}

#检查程序是否在运行
is_exist(){
  echo "开始执行检测程序运行状况..."
  pid=`ps -ef|grep java |grep $APP_NAME |grep -v grep| awk '{print $2}'`
  #如果不存在返回1,存在返回0     
  if [ -z "${pid}" ]; then
    echo "程序未运行!!!"
    return 1
  else
    echo "程序正运行..."
    return 0
  fi
}

#启动方法
start(){
  #LOG_PATH=/tmp/${APP_NAME}.log
  LOG_PATH=/dev/null

  is_exist
  if [ $? -eq 0 ]; then
    echo "${APP_NAME} is already running. pid=${pid}"
    echo "程序正在运行,此次不做操作..."
  else 
    #nohup java ${APP_OPTS} -jar ${APP_NAME} --spring.profiles.active=production >/dev/null 2>&1 &
    nohup java ${APP_OPTS} -jar ${APP_NAME} --spring.profiles.active=${PROFILE_ACTIVE} > ${LOG_PATH} 2>&1 &
    echo "已经执行启动命令..."
  fi
}

#停止方法
stop(){
  is_exist
  if [ $? -eq "0" ]; then
    kill -9 $pid
    echo "已经执行程序停止命令!"
  else
    echo "${APP_NAME} is not running"
    echo "程序没有运行,此次不做操作..."
  fi
}

#输出运行状态
status(){
  is_exist
  if [ $? -eq "0" ]; then
    echo "${APP_NAME} is running. Pid is ${pid}"
  else
    echo "${APP_NAME} is NOT running."
  fi
}

#重启
restart(){
  stop
  sleep 5
  start
  sleep 5
  status
}

#根据输入参数,选择执行对应方法,不输入则执行使用说明
case "$2" in
  "start")
    start
    ;;
  "stop")
    stop
    ;;
  "status")
    status
    ;;
  "restart")
    restart
    ;;
  *)
    usage
    ;;
esac


使用案例

./app.sh tongbujpa.jar start production

springboot应用的启动脚本_java




以前的脚本

https://my.oschina.net/lenglingx/blog/5272614

前提

在 linux 中已经配置好 jdk
检查是否配置好 jdk

java -version

springboot应用的启动脚本_spring_02


创建.sh 脚本

在自定义目录下创建 .sh 脚本,由于这个脚本只是操作指定 jar 包,个人建议脚本名称与 jar 包名称一致,方便区分,如下创建 item.jar

#替换这里jar包的路径,其它代码无需更改
APP_NAME=/root/item.jar
APP_OPTS=" -Xms8192m -Xmx8192m -XX:MetaspaceSize=256m -XX:MaxMetaspaceSize=512m -XX:+UseG1GC"
#使用说明,用来提示输入参数
usage() {
    echo "Usage: sh item.sh [start|stop|restart|status]"
    exit 1
}

#检查程序是否在运行
is_exist(){
  pid=`ps -ef |grep java |grep $APP_NAME |grep -v grep |awk '{print $2}'`
  #如果不存在返回1,存在返回0     
  if [ -z "${pid}" ]; then
   return 1
  else
    return 0
  fi
}

#启动方法
start(){
  is_exist
  if [ $? -eq 0 ]; then
    echo "${APP_NAME} is already running. pid=${pid}"
  else
    nohup java ${APP_OPTS} -jar ${APP_NAME} --spring.profiles.active=production >/dev/null 2>&1 &
  fi
}

#停止方法
stop(){
  is_exist
  if [ $? -eq "0" ]; then
    kill -9 $pid
  else
    echo "${APP_NAME} is not running"
  fi  
}

#输出运行状态
status(){
  is_exist
  if [ $? -eq "0" ]; then
    echo "${APP_NAME} is running. Pid is ${pid}"
  else
    echo "${APP_NAME} is NOT running."
  fi
}

#重启
restart(){
  stop
  sleep 5
  start
}

#根据输入参数,选择执行对应方法,不输入则执行使用说明
case "$1" in
  "start")
    start
    ;;
  "stop")
    stop
    ;;
  "status")
    status
    ;;
  "restart")
    restart
    ;;
  *)
    usage
    ;;
esac


脚本 2:

#!/bin/bash
#替换这里jar包的路径,其它代码无需更改
APP_NAME=/home/App/item.jar
APP_OPTS=" -Xms8192m -Xmx8192m -XX:MetaspaceSize=256m -XX:MaxMetaspaceSize=512m -XX:+UseG1GC"
#使用说明,用来提示输入参数
usage() {
    echo "Usage: sh app.sh [start|stop|restart|status]"
    exit 1
}

#检查程序是否在运行
is_exist(){
  echo "开始执行检测程序运行状况..."
  pid=`ps -ef|grep java |grep $APP_NAME |grep -v grep| awk '{print $2}'`
  #如果不存在返回1,存在返回0     
  if [ -z "${pid}" ]; then
    echo "程序未运行!!!"
    return 1
  else
    echo "程序正运行..."
    return 0
  fi
}

#启动方法
start(){
  is_exist
  if [ $? -eq 0 ]; then
    echo "${APP_NAME} is already running. pid=${pid}"
    echo "程序正在运行,此次不做操作..."
  else 
    nohup java ${APP_OPTS} -jar ${APP_NAME} --spring.profiles.active=production >/dev/null 2>&1 &
    echo "已经执行启动命令..."
  fi
}

#停止方法
stop(){
  is_exist
  if [ $? -eq "0" ]; then
    kill -9 $pid
    echo "已经执行程序停止命令!"
  else
    echo "${APP_NAME} is not running"
    echo "程序没有运行,此次不做操作..."
  fi
}

#输出运行状态
status(){
  is_exist
  if [ $? -eq "0" ]; then
    echo "${APP_NAME} is running. Pid is ${pid}"
  else
    echo "${APP_NAME} is NOT running."
  fi
}

#重启
restart(){
  stop
  sleep 5
  start
  sleep 5
  status
}

#根据输入参数,选择执行对应方法,不输入则执行使用说明
case "$1" in
  "start")
    start
    ;;
  "stop")
    stop
    ;;
  "status")
    status
    ;;
  "restart")
    restart
    ;;
  *)
    usage
    ;;
esac


执行脚本

1、先查看 jar 包运行状态

sh item.sh status

2、启动、停止、重启

sh item.sh start

sh item.sh stop

sh item.sh  restart

备注
sh xxx.sh 与./xxx.sh 区别
执行./xxx.sh 需要有执行权限,可通过以下代码赋予权限

chmod +x xxx.sh

 


springboot 加载外部配置文件:

-Dspring.config.location=/root/msxfwork/stagereport/application-prod.properties


springboot-stagereport-crontab.sh

#!/bin/bash
source /etc/profile
. /etc/profile
. ~/.bash_profile
cd /root/msxfwork/stagereport/
echo `date +"%Y-%m-%d %H:%M:%S"` >> /logs/monitor/springboot-stagereport.log
java -jar -Dspring.config.location=/root/msxfwork/stagereport/application-prod.properties /root/msxfwork/stagereport/springboot-stagereport.jar $1 $2