Details
-
Wish
-
Status: Resolved
-
Major
-
Resolution: Information Provided
-
2.28.0
-
None
-
None
Description
I would like to use the management console within my embedded broker.
1) I have Spring Boot application (using Jetty as a web server).
2) In the application I use an embedded broker.
I use this documentation.
The code:
EmbeddedActiveMQ server = new EmbeddedActiveMQ();
server.setConfiguration(config);
server.start();
Now as a second step, I like to enable the management console. I checked this documentation page. There it says that the embedded webserver can be managed through various operations on the ActiveMQServerControl. The configuration is done through "etc/bootstrap.xml". I of course don't have any configuration files. Is there a way to programmatically run and configure the management console together with my Spring Boot application?