如何实现Spring Boot服务的优雅停机?

2026-04-30 04:502阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计515个文字,预计阅读时间需要3分钟。

如何实现Spring Boot服务的优雅停机?

Spring Boot 优雅地关闭服务,实现ContextClosedEvent监听器,监听到关闭事件后关闭Spring Boot进程。网上有很多示例,使用Spring Boot插件进行关闭测试,该插件仅能关闭Spring Boot服务,无法直接杀死进程。

spring boot 优雅的关闭服务

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

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

**

actuator 关闭spring boot 实现方式
引入actuator 配置 shutdown
调用127.0.0.1/xxx/

引入actuator <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>-->

配置
在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<ContextClosedEvent> { @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(); }

到此这篇关于spring boot 如何优雅关闭服务的文章就介绍到这了,更多相关spring boot 关闭服务 内容请搜索易盾网络以前的文章或继续浏览下面的相关文章希望大家以后多多支持易盾网络!

如何实现Spring Boot服务的优雅停机?

本文共计515个文字,预计阅读时间需要3分钟。

如何实现Spring Boot服务的优雅停机?

Spring Boot 优雅地关闭服务,实现ContextClosedEvent监听器,监听到关闭事件后关闭Spring Boot进程。网上有很多示例,使用Spring Boot插件进行关闭测试,该插件仅能关闭Spring Boot服务,无法直接杀死进程。

spring boot 优雅的关闭服务

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

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

**

actuator 关闭spring boot 实现方式
引入actuator 配置 shutdown
调用127.0.0.1/xxx/

引入actuator <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>-->

配置
在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<ContextClosedEvent> { @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(); }

到此这篇关于spring boot 如何优雅关闭服务的文章就介绍到这了,更多相关spring boot 关闭服务 内容请搜索易盾网络以前的文章或继续浏览下面的相关文章希望大家以后多多支持易盾网络!

如何实现Spring Boot服务的优雅停机?