spring boot 正式环境部署

部署可以参考官网地址第59章节:
https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#deployment-install
官网有相对比较详细得介绍,这里做简单得总结参考如下,具体操作可以以官网为标准:

Linux/Unix部署

【1】系统服务部署

系统服务
在Spring Boot的Maven插件中,可以构建完整可执行程序的功能,因此就可以不用java -jar命令,直接运行jar来执行程序。这样我们就可以方便的将其创建成系统服务在后台运行了。主要步骤如下:

在pom.xml中添加Spring Boot的插件中,配置executable如下

 
   
     
      org.springframework.boot  
      spring-boot-maven-plugin  
       
        true 
       
     
   

关键配置:

  
       true 
  

具体可参考
To create a ‘fully executable’ jar with Maven use the following plugin configuration:


org.springframework.boot
spring-boot-maven-plugin

true

With Gradle, the equivalent configuration is:
springBoot {
executable = true
}
在完成上述配置后,使用mvn install进行打包,构建一个可执行的jar包

创建软连接到/etc/init.d/目录下

sudo ln -s /var/yourapp/yourapp.jar /etc/init.d/yourapp
在完成软连接创建之后,我们就可以通过如下命令对yourapp.jar应用来控制启动、停止、重启操作了
/etc/init.d/yourapp start|stop|restart

日志输入路径为:
/var/log/yourapp.log

当然也可以通过配置指定日志输出路径:

With the exception of JARFILE and APP_NAME, the above settings can be configured using a .conf file. The file is expected next to the jar file and have the same name but suffixed with .conf rather than .jar. For example, a jar named /var/myapp/myapp.jar will use the configuration file named /var/myapp/myapp.conf.

myapp.conf.
JAVA_OPTS=-Xmx1024M
LOG_FOLDER=/custom/log/folder

【2】 nohup 命令部署

Linux/Unix
下面我们来说说服务器上该如何来配置。实际上,实现的方法有很多种,这里就列两种还比较好用的方式:
nohup和Shell
该方法主要通过使用nohup
命令来实现,该命令的详细介绍如下:
nohup 命令
用途:不挂断地运行命令。
语法:nohup Command [ Arg … ][ & ]
描述:nohup 命令运行由 Command 参数和任何相关的 Arg 参数指定的命令,忽略所有挂断(SIGHUP)信号。在注销后使用 nohup 命令运行后台中的程序。要运行后台中的 nohup 命令,添加 &
到命令的尾部。

所以,我们只需要使用nohup java -jar yourapp.jar &命令,就能让yourapp.jar在后台运行了。但是,为了方便管理,我们还可以通过Shell来编写一些用于启动应用的脚本,具体参考如下:

[1]启动应用的脚本:start.sh

#!/bin/bash
# 版本:version 1.0
# by liurongming
 
nohup java -jar yourapp.jar --server.port=8888 &  

可以指定输出日志目录:
需求先 cd 到程序当前目录

#!/bin/bash
# 版本:version 1.0
# by liurongming

bin=$(cd `dirname $0`; pwd)

echo "Startup..."

LOGS_DIR=${bin}/"../logs"
if [ ! -d $LOGS_DIR ]; then
    mkdir $LOGS_DIR
fi

nohup ./yourapp>${bin}/../logs/yourapp.out 2>&1 &

sleep 1
tail -f ${bin}/../logs/yourapp.out

[2]关闭应用的脚本:stop.sh

#!/bin/bash
# 版本:version 1.0
# by liurongming

pid=$(ps -ef | grep yourapp.jar | grep -v grep | awk '{ print $2 }')  
if [ -z "$pid" ]  
then  
    echo Application is already stopped  
else  
    echo kill $pid
    kill $pid
fi  

或者使用强制停止

#!/bin/bash
# 版本:version 1.0
# by liurongming

bin=$(cd `dirname $0`; pwd)
pid=$(ps aux | grep yourapp.jar | grep -v grep | awk '{print $2}')

if [ -n "${pid}" ];
then
    echo Application is already stopped  
    sleep 3
    echo kill $pid 
    kill -9 ${pid}
    sleep 1
fi     

[3]整合了关闭和启动的脚本:run.sh

#!/bin/bash
# 版本:version 1.0
# by liurongming
 
echo stop application  
source stop.sh  
echo start application  
source start.sh  

备注:由于会先执行关闭应用,然后再启动应用,这样不会引起端口冲突等问题,适合在持续集成系统中进行反复调用。

windos部署

【1】使用 AlwaysUp工具

【2】使用 winsw工具

参考官网:(推荐使用)
59.3 Microsoft Windows services

Spring Boot application can be started as Windows service using winsw.
A sample maintained separately to the core of Spring Boot describes step-by-step how you can create a Windows service for your Spring Boot application.

你可能感兴趣的:(spring boot 正式环境部署)