Apache camel has added camel developer console in their latest release(3.15.0) I was trying it but after adding dependencies and 'camel.main.dev-console-enabled = true' , I am not able to find the developer console I had tried with endpoint http://localhost:8080/dev
Also I am not able to enable dev console when I am using Camel Context wrote in XML DSL. How can i add statement to enable developer console when i have camel context written in XML DSL
It is actually a very new feature, for now, the developer console is only available from http://localhost:8080/dev when you use Camel JBang as mentioned in the documentation.
For other modes, you can enable it programmatically by calling
context.setDevConsole(true)
or in case of Camel Main by settingcamel.main.dev-console-enabled
totrue
(as you mentioned) but it is not yet exposed, it can only be accessed programmatically from theDevConsoleRegistry
(accessible withcontext.getExtension(DevConsoleRegistry.class)
).