引言
Spring Boot应用程序除了使用java -jar 运行外,还可以作为 Unix 系统服务运行。 这使得在常见的生产环境中安装和管理Spring Boot应用程序非常容易。今天讨论一下如何正确、安全、优雅的启停Spring Boot应用。
创建可执行jar
maven 配置
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
</configuration>
</plugin>
方式一: 依赖Spring Boot Actuator的endpoint特性
在 maven 中引入actuator 依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
在application.properties中通过如下配置开启shutdown endpoint
#禁用 security
management.security.enabled=false
#禁用密码验证
endpoints.shutdown.sensitive=false
#启用shutdown
endpoints.shutdown.enabled=true
通过 nohup 放方式创建启动脚本(start.sh)
#!/bin/bash
nohup java -jar yourapp.jar &
通过发送 shutdwon 关停信号的方式建立关停脚本(stop.sh)
#shutdwon 请求url :host:port/context-psth/shutdown
curl -X POST host:port/shutdown # 请求方式必须是Post,返回结果:{"message":"Shutting down, bye..."}
方式二: Installation as an init.d service
当创建一个 fully executable jar 后, 只需要简单地将jar链接到init.d下,您的应用程序便可以作为init.d服务,而且支持标准的start,stop,restart和status命令
建立应用程序到 init.d 目录下的软连接(假定你的应用程序在目录/var/myapp, 且名为myapp.jar)
#给jar可读,可执行权限
chmod 500 /var/myapp/myapp.jar
#建立软连接
ln -s /var/myapp/myapp.jar /etc/init.d/myapp
服务管理
#查看服务状态
service myapp status # 控制台输出:Not running
#开启服务
service myapp start # 控制台输出:Started [21084]
#关闭服务
servicemyapp stop # 控制台输出:Stopped [21084]
此种方式的特性:
1.以拥有该jar文件的用户启动服务
2.默认将应用的PID保存到 /var/run/<appname>/<appname>.pid 文件中(可配置)
3.默认将标准输出流输出 /var/log/<appname>.log 文件中(可配置)
方式三: Installation as a systemd service
Systemd service 是 Unix/Linux 当下最新的初始化系统,是 Init.d service 的继承者,在许多现代 Linux 发行版使用。尽管您可以继续使用systemd的init.d脚本,但也可以使用 systemd service 脚本启动Spring Boot应用程序。
在/etc/systemd/system 目录下, 编写 myapp.service 脚本(假定你的应用程序在目录/var/myapp, 且名为myapp.har)
#根据你的需求修改 Description, User,ExecStart
[Unit]
Description=myapp
After=syslog.target
[Service]
User=myapp
ExecStart=/var/myapp/myapp.jar
SuccessExitStatus=143
[Install]
WantedBy=multi-user.target
设置开机启动
systemctl enable myapp.service
#命令输出: ln -s '/etc/systemd/system/myapp.service' '/etc/systemd/system/multi-user.target.wants/myapp.service'