Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 ...

like image 340
Adam Avatar asked Jul 24 '26 23:07

Adam


2 Answers

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.

like image 170
Oscerd Avatar answered Jul 26 '26 19:07

Oscerd


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>
like image 43
Panagiotis Bougioukos Avatar answered Jul 26 '26 17:07

Panagiotis Bougioukos



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!