Adam
Adam

Reputation: 85

Apache Camel support for Spring Boot 3

I've searched for information about Apache Camel supporting the new Spring Boot 3, but with no results.

My question is: Did Apache Camel announce the support for Spring Boot 3?

All I can find is Apache Camel is only to version <3.0 ...

Upvotes: 6

Views: 9748

Answers (2)

Oscerd
Oscerd

Reputation: 1656

Apache Camel will support Spring Boot 3 from Apache Camel 4.x.

For Camel 3 we are going to be on Spring Boot 2.x.

Upvotes: 7

Panagiotis Bougioukos
Panagiotis Bougioukos

Reputation: 18979

As you can see spring integration 6.0 goes General availability was announced just some days before.

As you can see in the 5th iteration of that project (link), there was added some support for apache camel.

You can read more about this here.

So considering that you already have spring-boot-starter-parent in your dependencies, you now you have the following 2 dependencies to be used to enable communication channels with 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>

Upvotes: 2

Related Questions