spring boot 如何优雅关闭服务

网友投稿 446 2022-11-14


spring boot 如何优雅关闭服务

spring boot 优雅的关闭服务

实现ContextClosedEvent 监听器,监听到关闭事件后,关闭springboot进程

**

网上有很多例子 使用spring boot 插件做关闭经测试此插件只能是关闭spring boot服务,不能杀死服务进程。还是需要实现关闭监听,去杀死进程。

网上有很多例子 使用spring boot 插件做关闭经测试此插件只能是关闭spring boot服务,不能杀死服务进程http://。还是需要实现关闭监听,去杀死进程。

网上有很多例子 使用spring boot 插件做关闭经测试此插件只能是关闭spring boot服务,不能杀死服务进程。还是需要实现关闭监听,去杀死进程。

重要的事说三遍

**

actuator 关闭spring boot 实现方式

引入actuator 配置 shutdown

调用http://127.0.0.1/xxx/

引入actuator

org.springframework.boot

spring-boot-starter-actuator

-->

配置

在application.properties中开启关闭

management.endpoints.web.exposure.include=*

#management.endpoint.shutdown.enabled = true

1.调用

1.主入口

public static ConfigurableApplicationContext configurableApplicationContext;

public static void main(String[] args) throws InterruptedException {

configurableApplicationContext = SpringApplication.run(GatewayApplication.class, args);

}

2.关闭监听

@Controller

public static class ShutdownAction implements ApplicationListener {

@Override

public void onApplicationEvent(ContextClosedEvent event) {

System.exit(SpringApplication.exit(configurableApplicationContext));

}

}

3.关闭服务命令

/**

* 关闭服务

*/

@RequestMapping(value = "/stop", method = RequestMethod.GET)

@ResponseBody

public void stopServer() {

MySpringApplication.configurableApplicationContext.close();

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java字符串驼峰与下换线格式转换如何实现
下一篇:通过实例解析Java类初始化和实例初始化
相关文章

 发表评论

暂时没有评论,来抢沙发吧~