Namphibian opened a new issue #1436: URL: https://github.com/apache/camel-quarkus/issues/1436
Hi Team. Just seeking some guidance. We have a large number of XML based routes. We would like to convert some of our project over to Quarkus however I am struggling as the lead to find information around how to go about this. We rarely drop down to java as XML can pretty much handle everything. We tend to use the following structure: 1. beans.xml 2. camel.xml 3. route-xxxx.xml The camel.xml file typically has the following imports: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://camel.apache.org/schema/spring https://camel.apache.org/schema/spring/camel-spring.xsd"> <import resource="beans.xml"/> <import resource="get-work-order-proxy.xml"/> <camelContext id="work-order-context" streamCache="true" trace="false" xmlns="http://camel.apache.org/schema/spring" messageHistory="true"> <routeContextRef ref="get-work-order-proxy-context"/> When I try the same code in Quarkus I run into a spring name spaces issue. Which is understandable as Quarkus is not spring. So some direct questions. 1. Is there a future for the XML DSL in quarkus camel? 2. Assuming there is a future how do I go about structuring my routes as outlined above. Appreciate all feedback N ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org