提问者:小点点

Apache Camel对Spring boot 3的支持


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

我的问题是:Apache Camel是否宣布支持Spring boot 3?

我只能找到Apache Camel的版本


共2个答案

匿名用户

Apache Camel将支持Apache Camel 4. x的Spring Boot 3。

对于骆驼3,我们将在Spring Boot 2. x上。

匿名用户

正如你所看到的,Spring集成6.0在几天前宣布了全面上市。

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

你可以在这里读到更多关于这个的信息。

因此,考虑到您的依赖项中已经有spring-boot-starter-家长,您现在有以下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>