We are upgrading our Spring boot/Apache camel project to Java 21 from 8 and facing an issue. After upgrade we noticed that the spring boot is up. However, camel context is not coming up and none of the routes are initialized. We are using below lib
<camel-spring-boot.version>2.25.3</camel-spring-boot.version>
<spring-boot.version>3.2.0</spring-boot.version>
<!-- Camel Spring boot-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring-boot</artifactId>
<version>${camel-spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring-boot-starter</artifactId>
<version>${camel-spring-boot.version}</version>
</dependency>
Could some ne please suggest what I am missing while upgrade.