├── .github └── workflows │ └── build.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── amqp-10-jms-spring-boot-autoconfigure ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── amqphub │ │ │ └── spring │ │ │ └── boot │ │ │ └── jms │ │ │ └── autoconfigure │ │ │ ├── AMQP10JMSAutoConfiguration.java │ │ │ ├── AMQP10JMSConnectionFactoryConfiguration.java │ │ │ ├── AMQP10JMSConnectionFactoryCustomizer.java │ │ │ ├── AMQP10JMSConnectionFactoryFactory.java │ │ │ ├── AMQP10JMSProperties.java │ │ │ └── package-info.java │ └── resources │ │ └── META-INF │ │ ├── native-image │ │ └── org.amqphub.spring │ │ │ └── amqp-10-jms-spring-boot-autoconfigure │ │ │ └── generated │ │ │ └── handlers │ │ │ ├── reflect-config.json │ │ │ └── resource-config.json │ │ └── spring │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ └── test │ ├── java │ └── org │ │ └── amqphub │ │ └── spring │ │ └── boot │ │ └── jms │ │ └── autoconfigure │ │ ├── AMQP10JMSAutoConfigurationTest.java │ │ ├── AMQP10JMSPooledAutoConfigurationTest.java │ │ └── AMQP10JMSPropertiesTest.java │ └── resources │ └── log4j.properties ├── amqp-10-jms-spring-boot-examples ├── README.md ├── amqp-10-jms-spring-boot-custom-configuration │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── amqphub │ │ │ │ └── spring │ │ │ │ └── boot │ │ │ │ └── jms │ │ │ │ └── example │ │ │ │ ├── CustomConfigredMessageProducer.java │ │ │ │ ├── CustomConfigurationExample.java │ │ │ │ └── CustomConfiguredMessageConsumer.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── simplelogger.properties │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── amqphub │ │ │ └── spring │ │ │ └── boot │ │ │ └── jms │ │ │ └── example │ │ │ ├── CustomConfigurationExampleTest.java │ │ │ └── Wait.java │ │ └── resources │ │ ├── broker.xml │ │ └── simplelogger.properties ├── amqp-10-jms-spring-boot-hello-world │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── amqphub │ │ │ │ └── spring │ │ │ │ └── boot │ │ │ │ └── jms │ │ │ │ └── example │ │ │ │ ├── HelloWorldExample.java │ │ │ │ ├── HelloWorldMessageConsumer.java │ │ │ │ └── HelloWorldMessageProducer.java │ │ └── resources │ │ │ ├── README.txt │ │ │ ├── application.properties │ │ │ └── simplelogger.properties │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── amqphub │ │ │ └── spring │ │ │ └── boot │ │ │ └── jms │ │ │ └── example │ │ │ ├── HelloWorldExampleTest.java │ │ │ └── Wait.java │ │ └── resources │ │ ├── broker.xml │ │ └── simplelogger.properties ├── amqp-10-jms-spring-boot-pooled-connection │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── amqphub │ │ │ │ └── spring │ │ │ │ └── boot │ │ │ │ └── example │ │ │ │ ├── PooledConnectionExample.java │ │ │ │ ├── PooledMessageConsumer.java │ │ │ │ └── PooledMessageProducer.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── simplelogger.properties │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── amqphub │ │ │ └── spring │ │ │ └── boot │ │ │ └── example │ │ │ ├── PooledConnectionExampleTest.java │ │ │ └── Wait.java │ │ └── resources │ │ ├── broker.xml │ │ └── simplelogger.properties ├── amqp-10-jms-spring-boot-reply-service │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── amqphub │ │ │ └── spring │ │ │ └── boot │ │ │ └── jms │ │ │ └── service │ │ │ └── ReplyService.java │ │ └── resources │ │ ├── application.properties │ │ └── simplelogger.properties ├── amqp-10-jms-spring-boot-requestor │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── amqphub │ │ │ └── spring │ │ │ └── boot │ │ │ └── jms │ │ │ └── service │ │ │ └── Requestor.java │ │ └── resources │ │ ├── application.properties │ │ └── simplelogger.properties ├── amqp-10-jms-spring-boot-simple-container-factory │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── amqphub │ │ │ │ └── spring │ │ │ │ └── boot │ │ │ │ └── example │ │ │ │ ├── SimpleJmsListenerContainerFactoryExample.java │ │ │ │ ├── SimpleJmsListenerContainerFactoryMessageConsumer.java │ │ │ │ └── SimpleJmsListenerContainerFactoryMessageProducer.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── simplelogger.properties │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── amqphub │ │ │ └── spring │ │ │ └── boot │ │ │ └── example │ │ │ ├── SimpleJmsListenerContainerFactoryExampleTest.java │ │ │ └── Wait.java │ │ └── resources │ │ ├── broker.xml │ │ └── simplelogger.properties └── pom.xml ├── amqp-10-jms-spring-boot-starter ├── .gitignore ├── pom.xml └── src │ └── main │ └── resources │ └── META-INF │ └── spring.properties └── pom.xml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/README.md -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/pom.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSAutoConfiguration.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSConnectionFactoryConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSConnectionFactoryConfiguration.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSConnectionFactoryCustomizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSConnectionFactoryCustomizer.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSConnectionFactoryFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSConnectionFactoryFactory.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSProperties.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/main/java/org/amqphub/spring/boot/jms/autoconfigure/package-info.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/main/resources/META-INF/native-image/org.amqphub.spring/amqp-10-jms-spring-boot-autoconfigure/generated/handlers/reflect-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/main/resources/META-INF/native-image/org.amqphub.spring/amqp-10-jms-spring-boot-autoconfigure/generated/handlers/reflect-config.json -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/main/resources/META-INF/native-image/org.amqphub.spring/amqp-10-jms-spring-boot-autoconfigure/generated/handlers/resource-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/main/resources/META-INF/native-image/org.amqphub.spring/amqp-10-jms-spring-boot-autoconfigure/generated/handlers/resource-config.json -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/test/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSAutoConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/test/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSAutoConfigurationTest.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/test/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSPooledAutoConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/test/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSPooledAutoConfigurationTest.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/test/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSPropertiesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/test/java/org/amqphub/spring/boot/jms/autoconfigure/AMQP10JMSPropertiesTest.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-autoconfigure/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-autoconfigure/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/README.md -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/pom.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/main/java/org/amqphub/spring/boot/jms/example/CustomConfigredMessageProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/main/java/org/amqphub/spring/boot/jms/example/CustomConfigredMessageProducer.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/main/java/org/amqphub/spring/boot/jms/example/CustomConfigurationExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/main/java/org/amqphub/spring/boot/jms/example/CustomConfigurationExample.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/main/java/org/amqphub/spring/boot/jms/example/CustomConfiguredMessageConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/main/java/org/amqphub/spring/boot/jms/example/CustomConfiguredMessageConsumer.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/main/resources/application.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/main/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/main/resources/simplelogger.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/test/java/org/amqphub/spring/boot/jms/example/CustomConfigurationExampleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/test/java/org/amqphub/spring/boot/jms/example/CustomConfigurationExampleTest.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/test/java/org/amqphub/spring/boot/jms/example/Wait.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/test/java/org/amqphub/spring/boot/jms/example/Wait.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/test/resources/broker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/test/resources/broker.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/test/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-custom-configuration/src/test/resources/simplelogger.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/README.md -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/pom.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/java/org/amqphub/spring/boot/jms/example/HelloWorldExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/java/org/amqphub/spring/boot/jms/example/HelloWorldExample.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/java/org/amqphub/spring/boot/jms/example/HelloWorldMessageConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/java/org/amqphub/spring/boot/jms/example/HelloWorldMessageConsumer.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/java/org/amqphub/spring/boot/jms/example/HelloWorldMessageProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/java/org/amqphub/spring/boot/jms/example/HelloWorldMessageProducer.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/resources/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/resources/README.txt -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/resources/application.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/main/resources/simplelogger.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/test/java/org/amqphub/spring/boot/jms/example/HelloWorldExampleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/test/java/org/amqphub/spring/boot/jms/example/HelloWorldExampleTest.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/test/java/org/amqphub/spring/boot/jms/example/Wait.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/test/java/org/amqphub/spring/boot/jms/example/Wait.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/test/resources/broker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/test/resources/broker.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/test/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-hello-world/src/test/resources/simplelogger.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/pom.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/main/java/org/amqphub/spring/boot/example/PooledConnectionExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/main/java/org/amqphub/spring/boot/example/PooledConnectionExample.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/main/java/org/amqphub/spring/boot/example/PooledMessageConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/main/java/org/amqphub/spring/boot/example/PooledMessageConsumer.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/main/java/org/amqphub/spring/boot/example/PooledMessageProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/main/java/org/amqphub/spring/boot/example/PooledMessageProducer.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/main/resources/application.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/main/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/main/resources/simplelogger.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/test/java/org/amqphub/spring/boot/example/PooledConnectionExampleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/test/java/org/amqphub/spring/boot/example/PooledConnectionExampleTest.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/test/java/org/amqphub/spring/boot/example/Wait.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/test/java/org/amqphub/spring/boot/example/Wait.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/test/resources/broker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/test/resources/broker.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/test/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-pooled-connection/src/test/resources/simplelogger.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-reply-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-reply-service/README.md -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-reply-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-reply-service/pom.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-reply-service/src/main/java/org/amqphub/spring/boot/jms/service/ReplyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-reply-service/src/main/java/org/amqphub/spring/boot/jms/service/ReplyService.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-reply-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-reply-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-reply-service/src/main/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-reply-service/src/main/resources/simplelogger.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-requestor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-requestor/README.md -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-requestor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-requestor/pom.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-requestor/src/main/java/org/amqphub/spring/boot/jms/service/Requestor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-requestor/src/main/java/org/amqphub/spring/boot/jms/service/Requestor.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-requestor/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-requestor/src/main/resources/application.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-requestor/src/main/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-requestor/src/main/resources/simplelogger.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/pom.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/main/java/org/amqphub/spring/boot/example/SimpleJmsListenerContainerFactoryExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/main/java/org/amqphub/spring/boot/example/SimpleJmsListenerContainerFactoryExample.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/main/java/org/amqphub/spring/boot/example/SimpleJmsListenerContainerFactoryMessageConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/main/java/org/amqphub/spring/boot/example/SimpleJmsListenerContainerFactoryMessageConsumer.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/main/java/org/amqphub/spring/boot/example/SimpleJmsListenerContainerFactoryMessageProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/main/java/org/amqphub/spring/boot/example/SimpleJmsListenerContainerFactoryMessageProducer.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/main/resources/application.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/main/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/main/resources/simplelogger.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/test/java/org/amqphub/spring/boot/example/SimpleJmsListenerContainerFactoryExampleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/test/java/org/amqphub/spring/boot/example/SimpleJmsListenerContainerFactoryExampleTest.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/test/java/org/amqphub/spring/boot/example/Wait.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/test/java/org/amqphub/spring/boot/example/Wait.java -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/test/resources/broker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/test/resources/broker.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/test/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/amqp-10-jms-spring-boot-simple-container-factory/src/test/resources/simplelogger.properties -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-examples/pom.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-starter/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /bin/ 3 | -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-starter/pom.xml -------------------------------------------------------------------------------- /amqp-10-jms-spring-boot-starter/src/main/resources/META-INF/spring.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/amqp-10-jms-spring-boot-starter/src/main/resources/META-INF/spring.properties -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amqphub/amqp-10-jms-spring-boot/HEAD/pom.xml --------------------------------------------------------------------------------