Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
I'm currently working with Apache Camel in a Quarkus application. I would like to configure the application to not discover any routes by default, and only include those defined in specific package...
#1: Initial revision
Unable to configure enhanced route discovery in Apache Camel
I'm currently working with Apache Camel in a Quarkus application. I would like to configure the application to not discover any routes by default, and only include those defined in specific packages using the `include-patterns` configuration. ```yaml quarkus: camel: routes-discovery: enabled: false include-patterns: org/acme/route/* ``` With this configuration settings, I was expecting Apache Camel to only discover routes from the specified package (`org.acme.route`), but it is also including routes from other packages that are defined as `RouteBuilder` classes. This behavior makes it difficult to achieve a strict "include only" configuration. Can this be done, or is there a problem with how I have configured the settings?