Spring boot 项目中如何优雅停止服务的五种方法,值得收藏!
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author huangqingshi
* @Date 2019-08-17
*/
@Configuration
public class ShutDownConfig {
@Bean
public TerminateBean getTerminateBean() {
return new TerminateBean();
}
}
在启动类里边输出一个启动日志,当工程启动的时候,会看到启动的输出,然后让我们执行停止命令。
curl -X POST http://localhost:3333/actuator/shutdown
以下日志可以输出启动时的日志,同时程序已经停止。是不是比较神奇。
第二种
======
第二种方法也比较简单,获取程序启动时的上下文,然后关闭主程序启动时的上下文。这样的程序在关闭的时候也会调用PreDestroy注解。如下方法在程序启动十秒后进行关闭。
/* method 2: 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();
第三种
===
第一种方法,在springboot启动的时候将进程号写入一个app.pid文件,生成的路径是可以指定的,可以通过命令cat /Users/huangqingshi/app.id | xargs kill命令直接停止服务,这个时候bean对象的PreDestroy方法也会调用的。这种方法大家使用的比较通用。写一个start.sh用于启动springboot程序,然后写一个停止程序将服务停止。
/* method 3 : 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()方法也可以退出程序,同时将生成一个退出码,这个退出码可以传递给所有的上下文。这个就是一个JVM的钩子,通过调用这个方法的话会把所有PreDestroy的方法执行并停止,并传递给特定的退出码给所有上下文。通过调用System.exit(exitCode)可以将这个错误码也传给JVM。0,给JVM一个SIGNAL。
/* method 4: 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方法退出程序。通过调用自己写的/ shutDownContext方法关闭程序:curl -X POST http:// localhost:3333 / shutDownContext。
package com.hqs.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;
/**
* @author huangqingshi
* @Date 2019-08-17
*/
@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;
}
}
好了,springboot的优雅关闭方法也都实现好了,也有同学问,如何暴力停止呢,简单,直接kill -9相应的PID即可。
总结一下
====
以上这几种方法实现的话比较简单,但是真实工作中还需要考虑的点还很多,某些需要保护暴露的点不被别人利用,通常要加一些防火墙,或者只在内部网使用,保证程序安全。
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数Java工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年Java开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
————————————————
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/efgtrrg/article/details/137297460