gpt4 book ai didi

java - 因线程错误而停止 Spring Boot

转载 作者:行者123 更新时间:2023-12-01 09:09:02 24 4
gpt4 key购买 nike

我使用 Spring Boot 进行了以下配置:

@Bean
public TaskExecutor a() {
return new SimpleAsyncTaskExecutor();
}

@Bean
public CommandLineRunner b() {
return (String... args) -> {
RunnableTask task = SomeRunnableTask();
a().execute(task);
};
}

当该线程停止(出于任何原因)时,我想关闭 Spring Boot 应用程序。

该线程是一个长时间运行的进程,连接到数据库、Web 服务、套接字...因此很可能在某些时候会失败。

线程停止时关闭 Spring Boot 的正确方法是什么?我不应该使用 Spring 中的 SimpleAsyncTaskExecutor 吗?

谢谢!

最佳答案

Spring Boot 有一个 ShutdownEndpoint其中

Allows the application to be gracefully shutdown (not enabled by default).

你必须看看它:

Thread thread = new Thread(new Runnable() {
@Override
public void run() {
try {
Thread.sleep(500L); // For the response to be sent back to the requester
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
}
ShutdownEndpoint.this.context.close(); // The ConfigurableApplicationContext
}
});
thread.setContextClassLoader(getClass().getClassLoader());
thread.start();

关于java - 因线程错误而停止 Spring Boot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41039219/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com