Initial Configuration

Using ActiveMQ Classic > Initial Configuration

Initial Configuration

Firstly you need to add the jars to your classpath.

Required JARs

To make ActiveMQ Classic easy to use, the default activemq-all.jar comes complete with all the libraries required. If you prefer to have explicit control over all the jars used by ActiveMQ Classic here is the full list of individual jars required

  • activemq-broker.jar
  • activemq-client.jar
  • activeio-core.jar
  • activemq-kahadb-store.jar (if you wish to use persistence)
  • slf4j-api.jar
  • J2EE APIs which could be the j2ee.jar from Sun or your J2EE container or you could use Geronimo’s freely distributable geronimo-spec-j2ee.jar. If you are inside a servlet container and being dependent on the j2ee.jar causes you troubles, the parts of the J2EE jar we are dependent on are as follows…
    • geronimo-spec-jms.jar
    • geronimo-spec-jta.jar
    • geronimo-spec-j2ee-management.jar

If you want to grab a J2EE specification jar we recommend the Apache repository

Optional JARS

  • spring.jar - if you wish to use the XML configuration file for configuring the Message Broker
  • if you wish to use message persistence then you need to add a persistent jar to your classpath (see below). If you just want a lightweight message bus with no durability you can leave this step out but we highly recommend persistence for production deployments.

Persistence Support

We support persistence via Specialized KahaDB file system message store or JDBC. For full explict control over configuration check out the Xml Configuration. If you wish to use KahaDB, include kahadb.jar in your classpath. In case of JDBC you’ll need to include appropriate database driver.

If you’re just doing some testing or in-VM SEDA based messaging you may wish to disable persistence. You can use the Xml Configuration for this.

In 5.x you can do this by setting the persistent=false property to false either in the Xml Configuration or on the broker URL.

Next steps

One of the first things you might want to do is start a broker. Once you have a broker running you could try some example programs

If you want to write your own application, you can just instantiate an ActiveMQConnectionFactory, configure its properties directly and then you’re ready to use the standard JMS API to create Connections, Sessions, MessageProducer and MessageConsumer instances.

You can also take a look at our unit tests for more examples on how to use ActiveMQ Classic.

Additional Resources

Specifications

  • Apache Camel
  • Apache Geronimo
  • Stomp is an open wire protocol (similar to HTTP) for communicating with MOMs from different languages. It has clients for languages like C, C#, Python, Perl, Ruby etc.
  • XBean is used as the default XML configuration mechanism for ActiveMQ Classic

Apache, ActiveMQ, Apache ActiveMQ, the Apache feather logo, and the Apache ActiveMQ project logo are trademarks of The Apache Software Foundation. Copyright © 2024, The Apache Software Foundation. Licensed under Apache License 2.0.