Apache Camel 对 Spring Boot 3 的支持

Ada*_*dam 5 apache-camel spring-boot

我搜索了有关 Apache Camel 支持新的 Spring Boot 3 的信息,但没有结果。

我的问题是:Apache Camel 宣布支持 Spring Boot 3 了吗?

我能找到的只是 Apache Camel 仅适用于版本 <3.0 ...

Osc*_*erd 7

Apache Camel 将从 Apache Camel 4.x 开始支持 Spring Boot 3。

对于 Camel 3,我们将使用 Spring Boot 2.x。

  • Camel 3.17 不适用于 Spring Boot 3,我不知道如何使用 Camel-Spring-Boot 3.17 运行基于 Spring Boot 3 的应用程序 (2认同)

Pan*_*kos 2

正如您所看到的,Spring Integration 6.0 正式发布是在几天前宣布的。

正如您在该项目的第五次迭代(链接)中所看到的,添加了对 apache Camel 的一些支持。

您可以在这里阅读更多相关内容

因此,考虑到您spring-boot-starter-parent的依赖项中已经存在,您现在拥有以下 2 个依赖项可用于启用与 apache-camel 的通信通道。

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-integration</artifactId>
</dependency>
 
<dependency>
  <groupId>org.springframework.integration</groupId>
  <artifactId>spring-integration-test</artifactId>
  <scope>test</scope> 
</dependency>
Run Code Online (Sandbox Code Playgroud)