parent
3e9908a797
commit
a323bd90a8
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2022 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2019 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -19,8 +19,7 @@ package org.springframework.boot.autoconfigure.jms.activemq;
|
||||||
import jakarta.jms.ConnectionFactory;
|
import jakarta.jms.ConnectionFactory;
|
||||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||||
|
|
||||||
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
|
import org.springframework.boot.autoconfigure.AutoConfiguration;
|
||||||
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
|
|
||||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
|
||||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
||||||
|
|
@ -28,21 +27,17 @@ import org.springframework.boot.autoconfigure.jms.JmsAutoConfiguration;
|
||||||
import org.springframework.boot.autoconfigure.jms.JmsProperties;
|
import org.springframework.boot.autoconfigure.jms.JmsProperties;
|
||||||
import org.springframework.boot.autoconfigure.jms.JndiConnectionFactoryAutoConfiguration;
|
import org.springframework.boot.autoconfigure.jms.JndiConnectionFactoryAutoConfiguration;
|
||||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
import org.springframework.context.annotation.Import;
|
import org.springframework.context.annotation.Import;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link EnableAutoConfiguration Auto-configuration} to integrate with an ActiveMQ
|
* {@link EnableAutoConfiguration Auto-configuration} to integrate with an ActiveMQ
|
||||||
* broker. Validates that the classpath contain the necessary classes before starting an
|
* broker.
|
||||||
* embedded broker.
|
|
||||||
*
|
*
|
||||||
* @author Stephane Nicoll
|
* @author Stephane Nicoll
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
* @since 1.1.0
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
@Configuration(proxyBeanMethods = false)
|
@AutoConfiguration(before = JmsAutoConfiguration.class, after = JndiConnectionFactoryAutoConfiguration.class)
|
||||||
@AutoConfigureBefore(JmsAutoConfiguration.class)
|
|
||||||
@AutoConfigureAfter({ JndiConnectionFactoryAutoConfiguration.class })
|
|
||||||
@ConditionalOnClass({ ConnectionFactory.class, ActiveMQConnectionFactory.class })
|
@ConditionalOnClass({ ConnectionFactory.class, ActiveMQConnectionFactory.class })
|
||||||
@ConditionalOnMissingBean(ConnectionFactory.class)
|
@ConditionalOnMissingBean(ConnectionFactory.class)
|
||||||
@EnableConfigurationProperties({ ActiveMQProperties.class, JmsProperties.class })
|
@EnableConfigurationProperties({ ActiveMQProperties.class, JmsProperties.class })
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2020 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2019 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -23,7 +23,7 @@ import org.apache.activemq.ActiveMQConnectionFactory;
|
||||||
* {@link ActiveMQConnectionFactory} whilst retaining default auto-configuration.
|
* {@link ActiveMQConnectionFactory} whilst retaining default auto-configuration.
|
||||||
*
|
*
|
||||||
* @author Stephane Nicoll
|
* @author Stephane Nicoll
|
||||||
* @since 1.5.5
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
@FunctionalInterface
|
@FunctionalInterface
|
||||||
public interface ActiveMQConnectionFactoryCustomizer {
|
public interface ActiveMQConnectionFactoryCustomizer {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2019 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2019 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -31,7 +31,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
|
||||||
* @author Stephane Nicoll
|
* @author Stephane Nicoll
|
||||||
* @author Aurélien Leboulanger
|
* @author Aurélien Leboulanger
|
||||||
* @author Venil Noronha
|
* @author Venil Noronha
|
||||||
* @since 1.0.0
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
@ConfigurationProperties(prefix = "spring.activemq")
|
@ConfigurationProperties(prefix = "spring.activemq")
|
||||||
public class ActiveMQProperties {
|
public class ActiveMQProperties {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2019 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2019 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2022 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2020 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2019 the original author or authors.
|
* Copyright 2012-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -43,8 +43,8 @@ class ActiveMQPropertiesTests {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void getBrokerUrlUseExplicitBrokerUrl() {
|
void getBrokerUrlUseExplicitBrokerUrl() {
|
||||||
this.properties.setBrokerUrl("vm://foo-bar");
|
this.properties.setBrokerUrl("tcp://activemq.example.com:71717");
|
||||||
assertThat(createFactory(this.properties).determineBrokerUrl()).isEqualTo("vm://foo-bar");
|
assertThat(createFactory(this.properties).determineBrokerUrl()).isEqualTo("tcp://activemq.example.com:71717");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
||||||
|
|
@ -17,9 +17,36 @@ bom {
|
||||||
library("ActiveMQ", "5.18.1") {
|
library("ActiveMQ", "5.18.1") {
|
||||||
group("org.apache.activemq") {
|
group("org.apache.activemq") {
|
||||||
modules = [
|
modules = [
|
||||||
|
"activemq-amqp",
|
||||||
|
"activemq-blueprint",
|
||||||
|
"activemq-broker",
|
||||||
"activemq-client",
|
"activemq-client",
|
||||||
"activemq-client-jakarta",
|
"activemq-client-jakarta",
|
||||||
|
"activemq-console" {
|
||||||
|
exclude group: "commons-logging", module: "commons-logging"
|
||||||
|
},
|
||||||
|
"activemq-http",
|
||||||
|
"activemq-jaas",
|
||||||
|
"activemq-jdbc-store",
|
||||||
|
"activemq-jms-pool",
|
||||||
|
"activemq-kahadb-store",
|
||||||
|
"activemq-karaf",
|
||||||
|
"activemq-log4j-appender",
|
||||||
|
"activemq-mqtt",
|
||||||
|
"activemq-openwire-generator",
|
||||||
"activemq-openwire-legacy",
|
"activemq-openwire-legacy",
|
||||||
|
"activemq-osgi",
|
||||||
|
"activemq-partition",
|
||||||
|
"activemq-pool",
|
||||||
|
"activemq-ra",
|
||||||
|
"activemq-run",
|
||||||
|
"activemq-runtime-config",
|
||||||
|
"activemq-shiro",
|
||||||
|
"activemq-spring" {
|
||||||
|
exclude group: "commons-logging", module: "commons-logging"
|
||||||
|
},
|
||||||
|
"activemq-stomp",
|
||||||
|
"activemq-web"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1217,6 +1244,7 @@ bom {
|
||||||
"spring-boot-loader-tools",
|
"spring-boot-loader-tools",
|
||||||
"spring-boot-properties-migrator",
|
"spring-boot-properties-migrator",
|
||||||
"spring-boot-starter",
|
"spring-boot-starter",
|
||||||
|
"spring-boot-starter-activemq",
|
||||||
"spring-boot-starter-actuator",
|
"spring-boot-starter-actuator",
|
||||||
"spring-boot-starter-amqp",
|
"spring-boot-starter-amqp",
|
||||||
"spring-boot-starter-aop",
|
"spring-boot-starter-aop",
|
||||||
|
|
|
||||||
|
|
@ -9,15 +9,12 @@ Spring Boot also auto-configures the necessary infrastructure to send and receiv
|
||||||
|
|
||||||
[[messaging.jms.activemq]]
|
[[messaging.jms.activemq]]
|
||||||
=== ActiveMQ Support
|
=== ActiveMQ Support
|
||||||
When https://activemq.apache.org/[ActiveMQ] is available on the classpath, Spring Boot can also configure a `ConnectionFactory`.
|
When https://activemq.apache.org/[ActiveMQ] is available on the classpath, Spring Boot can configure a `ConnectionFactory`.
|
||||||
|
|
||||||
NOTE: If you use `spring-boot-starter-activemq`, the necessary dependencies to connect to an ActiveMQ instance are provided, as is the Spring infrastructure to integrate with JMS.
|
NOTE: If you use `spring-boot-starter-activemq`, the necessary dependencies to connect to an ActiveMQ instance are provided, as is the Spring infrastructure to integrate with JMS.
|
||||||
|
|
||||||
ActiveMQ configuration is controlled by external configuration properties in `+spring.activemq.*+`.
|
ActiveMQ configuration is controlled by external configuration properties in `+spring.activemq.*+`.
|
||||||
|
By default, ActiveMQ is auto-configured to use the https://activemq.apache.org/tcp-transport-reference[TCP transport], connecting by default to `tcp://localhost:61616`. The following example shows how to change the default broker URL:
|
||||||
By default, ActiveMQ is auto-configured to use the https://activemq.apache.org/tcp-transport-reference[TCP transport] eith the default broker URL `tcp://localhost:61616`.
|
|
||||||
|
|
||||||
The following example shows how to change the default broker URL:
|
|
||||||
|
|
||||||
[source,yaml,indent=0,configprops,configblocks]
|
[source,yaml,indent=0,configprops,configblocks]
|
||||||
----
|
----
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,44 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2023 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.boot.testsupport.testcontainers;
|
||||||
|
|
||||||
|
import org.testcontainers.containers.GenericContainer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A {@link GenericContainer} for ActiveMQ.
|
||||||
|
*
|
||||||
|
* @author Stephane Nicoll
|
||||||
|
* @since 3.1.0
|
||||||
|
*/
|
||||||
|
public class ActiveMQContainer extends GenericContainer<ActiveMQContainer> {
|
||||||
|
|
||||||
|
private static final int DEFAULT_PORT = 61616;
|
||||||
|
|
||||||
|
public ActiveMQContainer() {
|
||||||
|
super(DockerImageNames.activeMq());
|
||||||
|
addExposedPorts(DEFAULT_PORT);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the broker URL to use.
|
||||||
|
* @return the broker url of the ActiveMQ instance
|
||||||
|
*/
|
||||||
|
public String getBrokerUrl() {
|
||||||
|
return String.format("tcp://" + getHost() + ":" + getMappedPort(DEFAULT_PORT));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -27,6 +27,8 @@ import org.testcontainers.utility.DockerImageName;
|
||||||
*/
|
*/
|
||||||
public final class DockerImageNames {
|
public final class DockerImageNames {
|
||||||
|
|
||||||
|
private static final String ACTIVE_MQ_VERSION = "5.18.0";
|
||||||
|
|
||||||
private static final String CASSANDRA_VERSION = "3.11.10";
|
private static final String CASSANDRA_VERSION = "3.11.10";
|
||||||
|
|
||||||
private static final String COUCHBASE_VERSION = "6.5.1";
|
private static final String COUCHBASE_VERSION = "6.5.1";
|
||||||
|
|
@ -56,6 +58,15 @@ public final class DockerImageNames {
|
||||||
private DockerImageNames() {
|
private DockerImageNames() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return a {@link DockerImageName} suitable for running ActiveMQ.
|
||||||
|
* @return a docker image name for running activeMq
|
||||||
|
*/
|
||||||
|
public static DockerImageName activeMq() {
|
||||||
|
return DockerImageName.parse("symptoma/activemq").withTag(ACTIVE_MQ_VERSION);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a {@link DockerImageName} suitable for running Cassandra.
|
* Return a {@link DockerImageName} suitable for running Cassandra.
|
||||||
* @return a docker image name for running cassandra
|
* @return a docker image name for running cassandra
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
plugins {
|
||||||
|
id "java"
|
||||||
|
id "org.springframework.boot.conventions"
|
||||||
|
}
|
||||||
|
|
||||||
|
description = "Spring Boot Actuator ActiveMQ smoke test"
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-activemq"))
|
||||||
|
|
||||||
|
testImplementation("org.testcontainers:testcontainers")
|
||||||
|
testImplementation("org.testcontainers:junit-jupiter")
|
||||||
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||||||
|
testImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
|
||||||
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,30 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2023 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package smoketest.activemq;
|
||||||
|
|
||||||
|
import org.springframework.jms.annotation.JmsListener;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
@Component
|
||||||
|
public class Consumer {
|
||||||
|
|
||||||
|
@JmsListener(destination = "sample.queue")
|
||||||
|
public void receiveQueue(String text) {
|
||||||
|
System.out.println(text);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2023 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package smoketest.activemq;
|
||||||
|
|
||||||
|
import jakarta.jms.Queue;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.boot.CommandLineRunner;
|
||||||
|
import org.springframework.jms.core.JmsMessagingTemplate;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
@Component
|
||||||
|
public class Producer implements CommandLineRunner {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private JmsMessagingTemplate jmsMessagingTemplate;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private Queue queue;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run(String... args) throws Exception {
|
||||||
|
send("Sample message");
|
||||||
|
System.out.println("Message was sent to the Queue");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void send(String msg) {
|
||||||
|
this.jmsMessagingTemplate.convertAndSend(this.queue, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,40 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2023 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package smoketest.activemq;
|
||||||
|
|
||||||
|
import jakarta.jms.Queue;
|
||||||
|
import org.apache.activemq.command.ActiveMQQueue;
|
||||||
|
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.jms.annotation.EnableJms;
|
||||||
|
|
||||||
|
@SpringBootApplication
|
||||||
|
@EnableJms
|
||||||
|
public class SampleActiveMQApplication {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public Queue queue() {
|
||||||
|
return new ActiveMQQueue("sample.queue");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(SampleActiveMQApplication.class, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
spring.activemq.pool.enabled=false
|
||||||
|
|
@ -0,0 +1,63 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2023 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package smoketest.activemq;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.extension.ExtendWith;
|
||||||
|
import org.testcontainers.junit.jupiter.Container;
|
||||||
|
import org.testcontainers.junit.jupiter.Testcontainers;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
import org.springframework.boot.test.system.CapturedOutput;
|
||||||
|
import org.springframework.boot.test.system.OutputCaptureExtension;
|
||||||
|
import org.springframework.boot.testsupport.testcontainers.ActiveMQContainer;
|
||||||
|
import org.springframework.test.context.DynamicPropertyRegistry;
|
||||||
|
import org.springframework.test.context.DynamicPropertySource;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Integration tests for demo application.
|
||||||
|
*
|
||||||
|
* @author Eddú Meléndez
|
||||||
|
* @author Stephane Nicoll
|
||||||
|
*/
|
||||||
|
@SpringBootTest
|
||||||
|
@Testcontainers(disabledWithoutDocker = true)
|
||||||
|
@ExtendWith(OutputCaptureExtension.class)
|
||||||
|
class SampleActiveMqTests {
|
||||||
|
|
||||||
|
@Container
|
||||||
|
private static final ActiveMQContainer container = new ActiveMQContainer();
|
||||||
|
|
||||||
|
@DynamicPropertySource
|
||||||
|
static void activeMqProperties(DynamicPropertyRegistry registry) {
|
||||||
|
registry.add("spring.activemq.broker-url", container::getBrokerUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private Producer producer;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void sendSimpleMessage(CapturedOutput output) throws InterruptedException {
|
||||||
|
this.producer.send("Test message");
|
||||||
|
Thread.sleep(1000L);
|
||||||
|
assertThat(output).contains("Test message");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue