如何防止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
}
}