Details
Description
Hi
I have a Spring Boot application with camel-cxf-starter ad xml routes.
When I upgraded the camel version from 3.7.3 to 3.9.0, at startup time 0 routes are loaded/started.
The routes directory is src/main/resources/camel.
Route example src/main/resources/camel/webService.xml:
<routes xmlns="http://camel.apache.org/schema/spring">
<route id="webService">
<from uri="cxf:bean:ScaService_v1.0-endpoint"/>
<onException>
<exception>java.lang.Exception</exception>
<handled>
<constant>true</constant>
</handled>
<process ref="errorManager"/>
</onException>
<to uri="direct:gestoreRotte"/>
</route>
</routes>
Spring boot version: 2.4.4
Camel 3.7
INFO Total 22 routes, of which 22 are started
INFO Apache Camel 3.7.3 (camel-1) started in 714ms
Camel 3.9
INFO Routes startup summary (total:0 started:0)
INFO Apache Camel 3.9.0 (camel-1) started in 103ms (build:44ms init:53ms start:6ms)