如何防止Spring Boot守护程序/服务器应用程序立即关闭/关闭?

2022-09-01 13:42:49

我的Spring Boot应用程序不是Web服务器,但它是使用自定义协议的服务器(在本例中使用Camel)。

但是Spring Boot在启动后立即停止(优雅地)。如何防止这种情况?

我希望应用在 Ctrl+C 或以编程方式停止时停止。

@CompileStatic
@Configuration
class CamelConfig {

    @Bean
    CamelContextFactoryBean camelContext() {
        final camelContextFactory = new CamelContextFactoryBean()
        camelContextFactory.id = 'camelContext'
        camelContextFactory
    }

}

答案 1

我找到了解决方案,使用+,例如:(注意:下面的代码是Groovy,而不是Java)org.springframework.boot.CommandLineRunnerThread.currentThread().join()

package id.ac.itb.lumen.social

import org.slf4j.LoggerFactory
import org.springframework.boot.CommandLineRunner
import org.springframework.boot.SpringApplication
import org.springframework.boot.autoconfigure.SpringBootApplication

@SpringBootApplication
class LumenSocialApplication implements CommandLineRunner {

    private static final log = LoggerFactory.getLogger(LumenSocialApplication.class)

    static void main(String[] args) {
        SpringApplication.run LumenSocialApplication, args
    }

    @Override
    void run(String... args) throws Exception {
        log.info('Joining thread, you can press Ctrl+C to shutdown application')
        Thread.currentThread().join()
    }
}

答案 2

从Apache Camel 2.17开始,有一个更干净的答案。引用 http://camel.apache.org/spring-boot.html

要阻止主线程以使 Camel 保持运行状态,请包含 spring-boot-starter-web 依赖项,或者将 caml.springboot.main-run-controller=true 添加到 application.properties 或 application.yml 文件中。

您还需要以下依赖项:

<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-spring-boot-starter</artifactId> <version>2.17.0</version> </dependency>

明确替换或使用驼峰物料清单导入依赖关系管理信息以实现一致性。<version>2.17.0</version>


推荐