Spring Boot优雅停止服务的几种方法
在使用Spring Boot的时候,都要涉及到服务的停止和启动,当我们停止服务的时候,很多时候大家都是kill -9
直接把程序进程杀掉,这样程序不会执行优雅的关闭。而且一些没有执行完的程序就会直接退出。
我们很多时候都需要安全的将服务停止,也就是把没有处理完的工作继续处理完成。比如停止一些依赖的服务,输出一些日志,发一些信号给其他的应用系统,这个在保证系统的高可用是非常有必要的。那么就来看一下几种停止Spring Boot的方法。
Spring Boot提供的actuator功能
actuator
可以执行shutdown
, health
, info
等,默认情况下,actuator
的shutdown
是disable
的,需要手动打开。首先引入acturator
的maven依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
然后将shutdown
节点打开,将/actuator/shutdown
暴露web访问也设置上,除了shutdown
之外还有health
, info
的web访问都打开的话将management.endpoints.web.exposure.include=*
即可。将如下配置设置到application.properties
,设置一下服务的端口号为3333
server.port=3333
management.endpoint.shutdown.enabled=true
management.endpoints.web.exposure.include=shutdown
接下来,创建一个Spring Boot工程,然后设置一个bean
对象,配置上PreDestroy
方法。这样在停止的时候会打印语句。bean
的整个生命周期分为创建、初始化、销毁,当最后关闭的时候会执行销毁操作。在销毁的方法中执行一条输出日志。
package cn.appblog.springboot.shutdowndemo.bean;
import javax.annotation.PreDestroy;
public class TerminateBean {
@PreDestroy
public void preDestroy() {
System.out.println("TerminalBean is destroyed");
}
}
创建一个configuration
,然后提供一个获取bean
的方法,这样该bean
对象会被初始化。
package cn.appblog.springboot.shutdowndemo.config;
import cn.appblog.springboot.shutdowndemo.bean.TerminateBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class ShutDownConfig {
@Bean
public TerminateBean getTerminateBean() {
return new TerminateBean();
}
}
在启动类里边输出一个启动日志,当工程启动的时候,会看到启动的输出,接下来执行停止命令。
curl -X POST http://localhost:3333/actuator/shutdown
可以输出启动时的日志打印和停止时的日志打印,同时程序已经停止。
关闭context
获取程序启动时候的context
,然后关闭主程序启动时的context
。这样程序在关闭的时候也会调用PreDestroy
注解。如下方法在程序启动十秒后进行关闭。
/* use ctx.close to shutdown all application context */
ConfigurableApplicationContext ctx = SpringApplication.run(ShutdowndemoApplication.class, args);
try {
TimeUnit.SECONDS.sleep(10);
} catch (InterruptedException e) {
e.printStackTrace();
}
ctx.close();
关闭app.pid文件
在Spring Boot启动的时候将进程号写入一个app.pid
文件,生成的路径是可以指定的,可以通过命令cat /Users/huangqingshi/app.id | xargs kill
命令直接停止服务,此时bean
对象的PreDestroy
方法也会调用的。这种方法使用比较普遍,写一个start.sh
用于启动Spring Boot程序,然后写一个停止程序将服务停止。
/* generate a pid in a specified path, while use command to shutdown pid :
'cat /Users/huangqingshi/app.pid | xargs kill' */
SpringApplication application = new SpringApplication(ShutdowndemoApplication.class);
application.addListeners(new ApplicationPidFileWriter("/Users/huangqingshi/app.pid"));
application.run();
SpringApplication.exit()
通过调用一个SpringApplication.exit()
方法也可以退出程序,同时将生成一个退出码,这个退出码可以传递给所有的context
。这个就是一个JVM的钩子,通过调用这个方法会把所有PreDestroy
的方法执行并停止,并且传递给具体的退出码给所有context
。通过调用System.exit(exitCode)
可以将这个错误码也传给JVM。程序执行完后最后会输出:Process finished with exit code 0
,给JVM一个SIGNAL。
/* exit this application using static method */
ConfigurableApplicationContext ctx = SpringApplication.run(ShutdowndemoApplication.class, args);
exitApplication(ctx);
public static void exitApplication(ConfigurableApplicationContext context) {
int exitCode = SpringApplication.exit(context, (ExitCodeGenerator) () -> 0);
System.exit(exitCode);
}
Controller中停止
自己写一个Controller,在Controller中获取到程序的context
,然后调用自己配置的Controller方法退出程序。通过调用自己写的/shutDownContext
方法关闭程序:curl -X POST http://localhost:3333/shutDownContext
package cn.appblog.springboot.shutdowndemo.controller;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ShutDownController implements ApplicationContextAware {
private ApplicationContext context;
@PostMapping("/shutDownContext")
public String shutDownContext() {
ConfigurableApplicationContext ctx = (ConfigurableApplicationContext) context;
ctx.close();
return "context is shutdown";
}
@GetMapping("/")
public String getIndex() {
return "OK";
}
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
context = applicationContext;
}
}
总结
以上这几种方法实现比较简单,但是真实工作中还需要考虑的点还很多,比如需要保护暴露的点不被别人利用,一般要加一些防火墙,或者只在内网使用,保证程序安全。
在真实的工作中第三种比较常用,程序中一般使用内存队列或线程池的时候最好要优雅的关机,将内存队列没有处理的保存起来或线程池中没处理完的程序处理完。但是因为停机比较快,所以停服务的时候最好不要处理大量的数据操作,这样会影响程序停止。
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/11/several-methods-for-gracefully-stopping-services-in-spring-boot/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论