Console
JVM since2.16.0 Nativeunsupported
Camel Developer Console
Maven coordinates
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-console</artifactId>
</dependency> Check the User guide for more information about writing Camel Quarkus applications.
Usage
Developer console endpoint
To access the developer console, you must first enable it by adding configuration to application.properties.
quarkus.camel.console.enabled=true Alternatively you can use a camel-main configuration option.
camel.main.dev-console-enabled=true The console is then available at the following URL.
http://localhost:8080/q/camel/dev-console You can then call a console by its id, such as routes:
http://localhost:8080/q/camel/dev-console/routes Exposing the developer console in prod mode
By default, the console is only exposed in dev and test modes. To expose the console in prod mode, add the following configuration to application.properties.
quarkus.camel.console.exposure-mode=ALL See the configuration overview below for further details about exposure-mode.
Additional Camel Quarkus configuration
| Configuration property | Type | Default |
|---|---|---|
Whether the Camel developer console is enabled. |
|
|
The context path under which the Camel developer console is deployed (default |
|
|
The modes in which the Camel developer console is available. The default |
|
|
Configuration property fixed at build time. All other configuration properties are overridable at runtime.