我们在Sping Boot 上使用Camel,我们有下面的application.yml属性文件来配置一些Camel设置。
我想关闭我的应用程序和 Camel 路线优雅,所以我绑使用DefaultShutdownStrategy,但我不知道什么是我需要在我的应用程序中使用的属性。yml启用?
我找不到任何地方在线以及,任何人都可以阐明这一点,请.或者你会建议如何实现优雅关机.
# Camel configuration:
camel:
component:
servlet:
# With multiple camel servlets running within the same process you need to set the servlet name.
# The servlet name is named after the port to ensure uniqueness without having to bring in a new parameter.
servlet-name: camelServlet${SERVER_PORT:9000}
springboot:
name: pilot-manager-service
main-run-controller: true
routes-include-pattern: classpath:routes/**/*.xml,classpath:route-templates/*.xml
1条答案
按热度按时间juud5qan1#
据我所知,在Camel中默认启用
DefaultShutdownStrategy
的优雅关机。以下是application.yml文档中3.20.x的默认值。
请注意,在单元测试期间,camel似乎至少忽略了关闭超时值,而是使用10秒。
您也可以进行自定义camel上下文配置,您可以将camel上下文关闭策略设置为
DefaultShutdownStrategy
的新示例,您可以使用自己的属性占位符进行配置。但请注意,@PropertySource
注解可能需要对yaml文件进行一些额外的工作。