@Configuration(proxyBeanMethods=false) @AutoConfigureBefore(value=JmsAutoConfiguration.class) @AutoConfigureAfter(value=JndiConnectionFactoryAutoConfiguration.class) @ConditionalOnClass(value={javax.jms.ConnectionFactory.class,org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory.class}) @ConditionalOnMissingBean(value=javax.jms.ConnectionFactory.class) @EnableConfigurationProperties(value={ArtemisProperties.class,JmsProperties.class}) @Import(value={org.springframework.boot.autoconfigure.jms.artemis.ArtemisEmbeddedServerConfiguration.class,org.springframework.boot.autoconfigure.jms.artemis.ArtemisXAConnectionFactoryConfiguration.class,org.springframework.boot.autoconfigure.jms.artemis.ArtemisConnectionFactoryConfiguration.class}) public class ArtemisAutoConfiguration extends Object
Auto-configuration
to integrate with an Artemis broker.
If the necessary classes are present, embed the broker in the application by default.
Otherwise, connect to a broker available on the local machine with the default
settings.ArtemisProperties