CAMEL-23654: camel-jbang - group commands in --help output by category Group the 40+ camel CLI subcommands into functional categories (Running, Monitoring, Actions, Development, Configuration, Catalog, AI) using a picocli IHelpSectionRenderer, replacing the flat alphabetical list so commands are easier to find. Ungrouped commands fall into "Other". Closes #24276
Apache Camel is an open source integration framework with 350+ connectors for databases, APIs, message brokers, and cloud services. Write routes in Java, YAML, or XML. Run on Spring Boot, Quarkus, or standalone with the Camel CLI. In production since 2007 — used by thousands of companies worldwide. Apache License 2.0.
What is Apache Camel? | Getting Started | Components | Tooling
camel init hello.yaml camel run hello.yaml
Or add to your existing Spring Boot project:
<dependency> <groupId>org.apache.camel.springboot</groupId> <artifactId>camel-spring-boot-starter</artifactId> </dependency>
The same route in YAML, Java, or XML — pick what fits your team:
YAML:
- route: from: uri: kafka:incoming-orders steps: - unmarshal: json: {} - to: uri: sql:INSERT INTO orders(id, data) VALUES(:#${header.id}, :#${body})
Java:
from("kafka:incoming-orders") .unmarshal().json() .to("sql:INSERT INTO orders(id, data) VALUES(:#${header.id}, :#${body})");
| Runtime | What it does |
|---|---|
| Camel Spring Boot | Camel on Spring Boot with starters for 350+ connectors |
| Camel Quarkus | Cloud-native Camel with fast startup, low memory, native compilation |
| Camel CLI | Run, develop, test, and trace routes from the command line |
Other runtimes: Camel K (Kubernetes), Camel Karaf (OSGi), Camel Kafka Connector (Kafka Connect)
350+ connectors for connecting to anything — Kafka, REST, JDBC, AWS, Azure, GCP, Salesforce, and more:
Apache Camel provides an MCP server (Model Context Protocol) for AI coding assistants — Claude Code, GitHub Copilot, Cursor, and Gemini CLI get full Camel catalog context. Camel also includes components for LangChain4j and OpenAI, and supports the A2A agent-to-agent protocol for connecting AI agents to enterprise systems.
We welcome all kinds of contributions:
https://github.com/apache/camel/blob/main/CONTRIBUTING.md
Apache License 2.0 — see LICENSE.txt.