Class ActiveMQJMSClient


  • public class ActiveMQJMSClient
    extends Object
    A utility class for creating ActiveMQ Artemis client-side JMS managed resources.
    • Field Detail

      • DEFAULT_ENABLE_1X_PREFIXES

        public static final boolean DEFAULT_ENABLE_1X_PREFIXES
    • Method Detail

      • createConnectionFactory

        public static org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory createConnectionFactory​(String url,
                                                                                                               String name)
                                                                                                        throws Exception
        Creates an ActiveMQConnectionFactory;
        Returns:
        the ActiveMQConnectionFactory
        Throws:
        Exception
      • createConnectionFactoryWithHA

        public static org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory createConnectionFactoryWithHA​(DiscoveryGroupConfiguration groupConfiguration,
                                                                                                                     JMSFactoryType jmsFactoryType)
        Creates an ActiveMQConnectionFactory that receives cluster topology updates from the cluster as servers leave or join and new backups are appointed or removed.

        The discoveryAddress and discoveryPort parameters in this method are used to listen for UDP broadcasts which contain connection information for members of the cluster. The broadcasted connection information is simply used to make an initial connection to the cluster, once that connection is made, up to date cluster topology information is downloaded and automatically updated whenever the cluster topology changes. If the topology includes backup servers that information is also propagated to the client so that it can know which server to failover onto in case of server failure.

        Parameters:
        groupConfiguration -
        jmsFactoryType -
        Returns:
        the ActiveMQConnectionFactory
      • createConnectionFactoryWithoutHA

        public static org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory createConnectionFactoryWithoutHA​(DiscoveryGroupConfiguration groupConfiguration,
                                                                                                                        JMSFactoryType jmsFactoryType)
        Create an ActiveMQConnectionFactory which creates session factories from a set of active servers, no HA backup information is propagated to the client The UDP address and port are used to listen for active servers in the cluster
        Parameters:
        groupConfiguration -
        jmsFactoryType -
        Returns:
        the ActiveMQConnectionFactory
      • createConnectionFactoryWithHA

        public static org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory createConnectionFactoryWithHA​(JMSFactoryType jmsFactoryType,
                                                                                                                     TransportConfiguration... initialServers)
        Create an ActiveMQConnectionFactory which will receive cluster topology updates from the cluster as servers leave or join and new backups are appointed or removed.

        The initial list of servers supplied in this method is simply to make an initial connection to the cluster, once that connection is made, up to date cluster topology information is downloaded and automatically updated whenever the cluster topology changes. If the topology includes backup servers that information is also propagated to the client so that it can know which server to failover onto in case of server failure.

        Parameters:
        jmsFactoryType -
        initialServers - The initial set of servers used to make a connection to the cluster. Each one is tried in turn until a successful connection is made. Once a connection is made, the cluster topology is downloaded and the rest of the list is ignored.
        Returns:
        the ActiveMQConnectionFactory
      • createConnectionFactoryWithoutHA

        public static org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory createConnectionFactoryWithoutHA​(JMSFactoryType jmsFactoryType,
                                                                                                                        TransportConfiguration... transportConfigurations)
        Create an ActiveMQConnectionFactory which creates session factories using a static list of transportConfigurations.

        The ActiveMQConnectionFactory is not updated automatically as the cluster topology changes, and no HA backup information is propagated to the client

        Parameters:
        jmsFactoryType -
        transportConfigurations -
        Returns:
        the ActiveMQConnectionFactory
      • createTopic

        @Deprecated
        public static javax.jms.Topic createTopic​(String name)
        Deprecated.
        Creates a client-side representation of a JMS Topic. This method is deprecated. Use ActiveMQSession.createTopic(String) as that method will know the proper prefix used at the target server.
        Parameters:
        name - the name of the topic
        Returns:
        The Topic
      • createQueue

        @Deprecated
        public static javax.jms.Queue createQueue​(String name)
        Deprecated.
        Creates a client-side representation of a JMS Queue. This method is deprecated. Use ActiveMQSession.createQueue(String) (String)} as that method will know the proper prefix used at the target server. *
        Parameters:
        name - the name of the queue
        Returns:
        The Queue