|
We support an XML deployment descriptor for configuring the ActiveMQ Message Broker. There are many things which can be configured such as
So we decided that using XML would make this configuration much easier. From version 4.0 onwards we use XBean to perform the XML configuration. For details of the XML see the Xml Reference
ExamplesThe default ActiveMQ configuration: current default config. Error formatting macro: snippet: java.lang.IndexOutOfBoundsException: Index: 20, Size: 20
From a binary distribution, from version 1.1 onwards there is an activemq script allowing you to run a Message Broker as a stand alone process from the command line easily providing the $ACTIVEMQ_HOME/bin directory is on your PATH. AMQ 4.x if myConfig.xml is in the classpath activemq xbean:myConfig.xml or to use the file path system activemq xbean:file:../conf/myConfig.xml AMQ 3.x activemq myConfig.xml Or to use the default config file its just activemq If you have a source distribution you can run a broker using Maven specifying one of these configuration files as follows maven server -Dconfig=xbean:file:src/release/conf/activemq.xml If your classpath is set up correctly you can achieve the same thing from the command line java org.apache.activemq.broker.Main xbean:file:src/release/conf/activemq.xml Configuring embedded brokersYou can also use the XML Configuration to configure embedded brokers. For example using the JNDI configuration mechanism you can do the following User Submitted ConfigurationsWe have a page which allows users to submit details of their configurations. BackgroundSince ActiveMQ has so many strategy pattern plugins for transports, wire formats, persistence and many other things, we wanted to leave the configuration format open so that you the developer can configure and extend ActiveMQ in any direction you wish. So we use the Spring XML configuration file format, which allows any beans / POJOs to be wired together and configured. However often Spring's XML can be kinda verbose at times, so we have implemented an ActiveMQ extension to the Spring XML which knows about the common, standard ActiveMQ things you're likely to do (e.g. tags like connector, wireFormat, serverTransport, persistence) - but at any time you can fall back to the normal Spring way of doing things (with tags like bean, property etc). To see documentation of the XML file we use or to get access to the XSD/DTD see the Xml Reference |