第 7 章 在 Spring Boot 中运行 Apache Camel 应用程序
Apache Camel Spring Boot 组件会自动为 Spring Boot 配置 Camel 上下文。Camel 上下文的自动配置会自动检测 Spring 上下文中提供的 Camel 路由,并将密钥 Camel 工具(如生成者模板、消费者模板和类型转换器)注册为 Bean。Apache Camel 组件包含一个 Spring Boot 初学者模块,允许您使用启动者开发 Spring Boot 应用程序。
7.1. Camel Spring Boot 组件简介
每个 Camel Spring Boot 应用程序都必须使用项目的 pom.xml
中的 dependencyManagement
元素来指定依赖项的产品化版本。这些依赖项在红帽 Fuse BOM 中定义,并受特定版本的 Red Hat Fuse 支持。您可以省略额外启动者的版本号属性,以便不会覆盖 BOM 中的版本。如需更多信息,请参阅 快速入门 pom。
Example
<dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.redhat-fuse</groupId> <artifactId>fuse-springboot-bom</artifactId> <version>${fuse.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
注意
camel-spring-boot
jar 包含 spring.factories
文件,该文件允许您将该依赖项添加到 classpath 中,以便 Spring Boot 自动配置 Camel 上下文。