4.12. 添加 XML 路由
默认情况下,您可以将 Camel XML 路由放在 camel 目录下的 classpath 中,camel-spring-boot
将自动检测并包含。从 Camel 版本 2.17 开始,您可以使用配置选项配置目录名称或禁用此功能,如下所示:
// turn off camel.springboot.xmlRoutes = false // scan in the com/foo/routes classpath camel.springboot.xmlRoutes = classpath:com/foo/routes/*.xml
注意
XML 文件应该是 Camel XML 路由,而不是 CamelContext
,例如:
<routes xmlns="http://camel.apache.org/schema/spring"> <route id="test"> <from uri="timer://trigger"/> <transform> <simple>ref:myBean</simple> </transform> <to uri="log:out"/> </route> </routes>
使用带有 <camelContext> 的 Spring XML 文件时,您可以在 Spring XML 文件和 application.properties 文件中配置 Camel。例如,要在 Camel 上设置名称并打开流缓存,请添加:
camel.springboot.name = MyCamel camel.springboot.stream-caching-enabled=true