Luca Burgazzoli created CAMEL-14053:
---------------------------------------
Summary: Routes Loader SPI
Key: CAMEL-14053
URL: https://issues.apache.org/jira/browse/CAMEL-14053
Project: Camel
Issue Type: New Feature
Components: camel-core-api
Reporter: Luca Burgazzoli
Fix For: 3.x
Both camel-quarkus and camel-k have now a concept of routes loader which allow
to customize how and if routes are loaded in the case of camel-quarkus or to
provide support for routes written in additional languages in the case of
camel-k.
It would be nice to introduce an official SPI in camel and leverage as example
in camel-main, so one could write something like:
{code:java}
Main main = new Main()
main.addRoutes(
"classpath:my.company.MyRouteImpl.class",
"file:/etc/camel/integration.js",
...
);
main.run()
{code}
And loading of the routes is the delegated to a loader discovered by camel
using the SPI mechanic.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)